>
// ajax傳送的get請求
$.ajax()
;// ajax傳送的post請求
$.ajax(}
);script
>
//具體****
src=
"">
script
>
//執行 get 請求
axios.get('/user?id=12345')
.then(function (response) )
.catch(function (error) );
// 可選地,上面的請求可以這樣做
axios.get('/user',
}).then(function (response) )
.catch(function (error) );
//執行 post 請求
axios.post('/user', )
.then(function (response) )
.catch(function (error) );
//執行多個併發請求
function getuseraccount()
function getuserpermissions()
axios.all([getuseraccount(), getuserpermissions()])
.then(axios.spread(function (acct, perms) ));
//可以通過向 axios 傳遞相關配置來建立請求
//axios(config)
// 傳送 post 請求
axios(
});
//axios(url[, config])
// 傳送 get 請求(預設的方法)
try }) // 如果是await則本身promise就不需要寫後面then或catch
// 對res進行處理即可
console.log(res.data)
} catch (err)
}getarticlebyid(5)
npm install mockjs
var mock = require('mockjs')
var data = mock.mock(]
})// 輸出結果
console.log(json.stringify(data, null, 4))
前端mock資料初學
此方法最為簡便,下圖為easy mock的截圖 例如在 vue cli專案中,可以在vue.config.js中配置 open false,host 0.0.0.0 允許外部ip訪問 port 8022,埠 https false,啟用https overlay 錯誤 警告在頁面彈出 proxy 配...
前端mock資料,跨域處理
前端模擬資料,我時自己引入乙個後端koa外掛程式,自己讓後端設定資料,傳送乙個api給前端 用的是 react webpack框架 首先後端建立資料 npm i koa koa router d 建立乙個server服務 server.js var router require koa router...
mock資料測試,模擬http請求
第一步 匯入支援包 dependency groupid org.mockito groupid artifactid mockito all artifactid version 1.9.5 version scope test scope dependency 第二步 編寫 用mock資料測試的...