安装
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) {
// 处理失败的结果
}
);