使用axios處理請求時,出現的問題解決
當url是遠程接口鏈接時,會報404的錯誤:
Uncaught (in promise) Error: Request failed with status code 404
如果用postman測試接口沒有問題,那么一般是后台接收不到傳入的參數,檢查並改變參數格式問題:
var instance = axios.create({ headers: {'content-type': 'application/x-www-form-urlencoded'} }); instance.post(`url`, params).then(res => res.data);
