vue使用axios不能赋值问题
举例在钩子函数mounted中mounted(){//由于this在回调函数中指向不同并非是vue实例所以先赋值给_thisvar _this=thisthis.axios.post('https://www.easy-mock.com/mock/5c2dc796c8bc2e49abfeaa30/nurse/nurse_infor')...
·
举例在钩子函数mounted中
mounted(){
//由于this在回调函数中指向不同并非是vue实例所以先赋值给_this
var _this=this
this.axios.post('https://www.easy-mock.com/mock/5c2dc796c8bc2e49abfeaa30/nurse/nurse_infor')
.then(function (response) {
_this.showData=response.data.data
})
.catch(function (error) {
console.log(error)
});
},
更多推荐
已为社区贡献3条内容
所有评论(0)