請求
/** * * @param {*} that this指向 * @param {*} pUrl 公共介面地址 * @param {*} url 詳細介面地址 * @param {*} data 形參 * @param {*} cbk 回撥函式 */ _Init: function(that, pUrl, url, data, cbk) { axios({ url: pUrl + url, method: "post", data: data, headers: { "Content-Type": "application/json" } }) .then(res => { console.log(res); cbk(res); }) .catch(cat => { console.log("axios的catch", cat); that.$message({ message: "資料異常", center: true }); }); },複製程式碼