to.js
export default function to(promise) { return promise.then(data => { return [null, data]; }) .catch(err => [err]); }
捕获错误
const [err, product] = await to(new Http(this.apiurl + api.login, 'post', { username, password }).send()); if (err) { uni.showToast({ title: err.data.msg }); return false; } else { const result = await new Http(this.apiurl + api.login, 'post', { username, password }).send(); uni.setStorageSync('userinfo', result); this.set_user(result); this.username = ''; this.password = ''; uni.switchTab({ url: '../my/my' }); }
发表评论
侧栏公告
寄语
譬如朝露博客是一个分享前端知识的网站,联系方式11523518。
热评文章
标签列表
热门文章
友情链接