ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
1.创建promise ~~~ const promise = new Promise((resolve,reject)=>{ // pending 进行中 // fulfilled 已成功 // rejected 已失败 wx.getSystemInfo({ success: function(res) { resolve(res); }, fail:error=>{ reject(error); } }) }) //只要new Promise()那么promise就在进行中 //如果将进行中的代码,调用resolve()或reject()那么promise的状态就凝固了 ~~~ 2.使用then调用promise成功或失败的状态 ~~~ promise.then(res=>{ console.log(res); },err=>{ console.log(err); }) ~~~