在vue中使用vue-resource发送ajax请求的方法:1.新建vue.js项目;2.使用npm命令下载vue-resource;3.使用import方法导入vue-resource;4.执行代码发送ajax请求;
具体步骤如下:
1.首先,在vue-cli中创建一个vue.js项目;
vue create project-name
2.vue.js项目创建好后,在项目中使用npm命令下载vue-resource模块;
npm install vue-resource --save
3.vue-resource模块下载好后,在项目中使用import方法导入vue-resource模块;
import VueResource from ‘vue-resource‘
4.最后,vue-resource模块导入后,在项目中执行以下代码即可发送ajax请求;
Vue.use(VueResource) //声明模块
this.$http.get(‘Url‘).then(
response=>{
console.log(response.data)//返回结果数据
},
response=>{
console.log(response.statusText)//错误信息
})