學習vue和nodejs的過程中,涉及到了axios,今天爲了測試,寫了get和post兩個方法來跟node服務端交互,結果由於header和參數弄了很久,在此記錄一下,同時分享;vue
因爲剛接觸axios,在測試方法中,寫的都是很簡單的東西,不過可以實現基礎功能,大神看到的話..很是歡迎指導..node
//GET方法ios
axios.get(url, {
params: { 'key': 'value' }
}).then(function (response) {
alert(''.concat(response.data, '\r\n', response.status, '\r\n', response.statusText, '\r\n', response.headers, '\r\n', response.config));
}).catch(function (error) {
alert(error);
});axios
//對應服務端獲取數據 app
//POST方法post
var params = new URLSearchParams();
params.append('key', 'value');
axios.post(url, params).then(function (response) {
alert(''.concat(response.data, '\r\n', response.status, '\r\n', response.statusText, '\r\n', response.headers, '\r\n', response.config));
}).catch(function (error) {
alert(error);
});學習
//對應服務端獲取數據測試
此種寫法猜想應該只是一種比較簡單的實現,但願可以幫到其餘人,同時但願高手指教;ui