导入依赖
终端输入 npm i vue-resource
使用插件
在main.js中应用插件
import Vue from "vue";
import App from "./App.vue"
//引入插件
import vueResource from "vue-resource";
//使用插件
Vue.use(vueResource)new Vue({el:'#app',render:h=>h(App),
})
发送请求
利用this.$http发送get、post、put等请求
this.$http.get("请求路径").then(response=>{this.studentList=response.data},err=>{alert(err.message)})
到目前为止,vue-resource与axios的使用几乎完全一样,不过vue-resource不怎么维护了,所以更推荐用axios发请求