个人笔记-----Vue中与后台通信axios【如有不对,欢迎指正】

安装 axios

npm install axios --save-dev

main.js中的Vue.config.productionTip = false 设置 false 以阻止 vue 在启动时产生提示。

然后再 main.js 中引入,import axios from 'axios',然后再Vue实例对象中进行注册,

//实例化vue对象
new Vue({
  router,
  store,
  axios,
  render: h => h(App)
}).$mount('#app')

这样在其他组件还不能直接使用,而且还不能用 user 方法,需要在 vue 的原型属性添加一个属性 $axios,并且将这个属性指向 axios ,这样在其他组件我们就可以直接使用 axios 命令了。

vue 的原型属性添加一个属性 `$axios`

Vue.prototype.$axios = axios

.$axios 有一个 get 方法,还有一个 post 方法,
语法是:

 **get() 方法**

 getApi(){
     this.$axios.get('rul')
     .then((res) => {

     })
     .catch((err) => {

     })
  }


**post() 方法**

this.$axios.post('/user', {
	firstName: 'Fred',
	lastName: 'Flintstone'
})
.then(function (res) {
	console.log(res);
})
.catch(function (err) {
	console.log(err);
});

.then() 方法建议使用箭头函数,如果用 function 会涉及到 this 的指向问题,

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值