vue-resource
生活随笔
收集整理的這篇文章主要介紹了
vue-resource
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
安裝
npm install vue-resource
引入
import VueResource from 'vue-resource';
Vue.use(VueResource);
使用
get方法
this.$http.get("http://localhost/test.php").then(
function (res) {
// 處理成功的結果
console.log(res.body);
},function (res) {
// 處理失敗的結果
}
);
post方法
this.$http.post("http://localhost/test.php",{name:"zhangsan"},{emulateJSON:true}).then(
function (res) {
// 處理成功的結果
console.log(res.body);
},function (res) {
// 處理失敗的結果
}
);
更多專業前端知識,請上 【猿2048】www.mk2048.com
總結
以上是生活随笔為你收集整理的vue-resource的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: checkbox 最多选两项
- 下一篇: 淘宝购物车效果