ajax 或者 axios 或调函数中 指向vue 实例

前端之家收集整理的这篇文章主要介绍了ajax 或者 axios 或调函数中 指向vue 实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

 
 
1. 箭头函数
(resp)=>{
//函数
} 或者 function(res){}.bind(this)
 
axios.post('/app/user/loginSubmit',data)
        .then(function(res){
            if(res.data){
                this.error = '';
                window.location.href = '/';
            }else {
                this.error = '帐号或者密码错误';
            }
            //console.log(res);  }.bind(this))
        .catch(function(err){
            //console.log(err);  });

axios.post('/app/user/loginSubmit',data)
        .then((res)=>{
            if(res.data){
                this.error = '';
                window.location.href = '/';
            }else {
                this.error = '帐号或者密码错误';
            }
        })
原文链接:https://www.f2er.com/ajax/161404.html

猜你在找的Ajax相关文章