導入resource文件vue
<script src="https://cdn.staticfile.org/vue-resource/1.5.1/vue-resource.min.js"></script>
代碼塊:json
一、get請求後端
1 var params = { 2 locale: "zh" 3 }; 4 that.$http.get('url',{params:params}).then(function (res) { 5 console.log(res); 6 },function (err) { 7 console.log(22222222222); 8 })
二、post請求:post 發送數據到後端,須要第三個參數 {emulateJSON:true}。emulateJSON 的做用: 若是Web服務器沒法處理編碼爲 application/json 的請求,你能夠啓用 emulateJSON 選項。服務器
1 var params = { 2 locale: "zh" 3 }; 4 that.$http.post('url',params,{emulateJSON:true}).then(function (res) { 5 console.log(res); 6 },function (err) { 7 console.log(22222222222); 8 })
API:app