submitPwd () { if (this.oldPwd !== '' && this.newPwd !== '' && this.password !== '') { console.log(111) axios.post(httpUrl.checkOldPwd, this.oldPwd) .then(res => { console.log(222) this.status = true }) .catch(err => console.log(err)) console.log(333) console.log(this.status) if (this.status) { console.log('旧密码验证通过') } else { console.log('旧密码输入错误') } } else { console.log('密码不能为空') } }data中 status: false以上代码为一个提交密码的方法案例,理想状态的输出顺序应该是:111222333true旧密码验证通过但是实际输出顺序是:111333false旧密码输入错误222这是为什么?
添加回答
举报
0/150
提交
取消