2020
10-09
10-09
在vue中使用回调函数,this调用无效的解决
letself=this//使用新变量替换this,以免this无效//updateStudentInfoToServer是一个将本身部分数据异步上传的接口,接收三个参数,其中第一个是数据,第二、三个是函数,第二、三个函数使用function(){}形式书写updateStudentInfoToServer:function(data,networkOk,networkError){letpostData=this.$qs.stringify({data:data})this.axios.post('/api/update/updateStudentInfo',postData).then(res=>{console...
继续阅读 >