码迷,mamicode.com
首页 > Web开发 > 详细

Vue 中使用Ajax请求

时间:2019-07-28 21:30:45      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:nbsp   imp   evel   tps   font   success   callback   模块   ons   

Vue 项目中常用的 2 个 ajax 库

(一)vue-resource

vue 插件, 非官方库,vue1.x 使用广泛

vue-resource 的使用

在线文档   https://github.com/pagekit/vue-resource/blob/develop/docs/http.md

下载

npm install vue-resource--save

编码

// 引入模块 ,注意应该在App.vue中引入和声明

import VueResource from ‘vue-resource‘

// 声明使用

Vue.use(VueResource)

// 通过 vue组件对象发送 ajax 请求

this.$http.get(‘/someUrl‘).then((response)=>{

//successcallback

console.log(response.data)//返回结果数据

},(response)=>{

//errorcallback
console.log(response.statusText)//错误信息
})

 

 

 

(二)axios

通用的 ajax 请求库, 官方推荐,vue2.x 使用广泛

axios 的使用

在线文档   https://github.com/pagekit/vue-resource/blob/develop/docs/http.md

下载

npm install axios--save

编码

// 引入模块

import axios from ‘axios‘
// 发送 ajax 请求

axios.get(url) .then(response=>{

//successcallback

console.log(response.data)// 得到返回结果数据

}) .catch(error=>{

console.log(error.message)//错误信息

})

Vue 中使用Ajax请求

标签:nbsp   imp   evel   tps   font   success   callback   模块   ons   

原文地址:https://www.cnblogs.com/adongyo/p/11260943.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!