摘要:
return new Promise((resolve, reject) => { resolve({ status: 2 }) if (true) { resolve({ status: 1 }) } } Promise中,只要遇到resolve,就会将resolve状态凝固,后边再出现其他的re 阅读全文
摘要:
app.isLogin() // 判断是否登录后 .then(res=>{ this.setData({ login: true }, res2=>{ // 清空临时积分 return app.clearTempScore() // 返回Promise }) }) .then(res => { co 阅读全文