這次帶給大家怎樣操作ajax請求與axios包,操作ajax請求與axios包的注意事項有哪些,下面就是實戰案例,一起來看一下。
在vue中,常常會用到資料請求,常用的有:vue-resourse、axios
今天我說的是axios的post請求
#github原始檔及文件位址:【https://github.com/axios/axios】
# 首先,引入axios##
CDN: <script src="https://unpkg.com/axios/dist/axios.min.js"></script> npm: npm install axios 并在全局的js中引入:import axios from 'axios';
• get請求
axios.get('/user?ID=12345') .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); });
•post請求
依赖于qs包,将对象转换成以&连接的字符串 //例: axios.post( postUrl ,qs.stringify({userid:1,username:'yyy'})).then(function (response) { console.log(response); })
附錄:設定axios
在上面封裝的方法中,使用了axios 的三個配置項,實際上只有url 是必須的,完整的api 可以參考使用說明為了方便,axios 還為每種方法起了別名,例如上面的saveForm 方法等價於:axios.post('/user', context.state.test02)
.then(function(res){ console.log(res) }) .catch(function(err){ console.log(err) })
這兩個回呼函數都有各自獨立的作用域,如果直接在裡面存取this,無法存取到Vue 實例這時只要新增一個.bind(this) 就能解決這個問題
.then(function(res){ console.log(this.data) }.bind(this))
以上是怎樣操作ajax請求與axios包的詳細內容。更多資訊請關注PHP中文網其他相關文章!