如下,我有两个函数,写成了promis 形式
函数一
verifyGA(type){
let that = this;
return new Promise((resolve,reject) => {
that.$post('/user/verifyGA',{
gaCode:that.gaCode,
captchaType:type
}).then(res=>{
if (!res.code) {
resolve(true)
} else {
reject(res.message)
that.gaError = res.message;
}
})
})
},
函数二
checkCode(type){
let that = this;
let bind = this.isEmail ? 32:31;
let Untie = this.isEmail ? 34:33;
let code_type = type == 1 ? bind:Untie;
return new Promise((resolve,reject) => {
that.$post('/user/checkCode',{
code:that.code,
codeType:code_type
}).then(res=>{
if (!res.code) {
resolve(true)
} else {
reject(res.message)
that.codeError = res.message;
}
})
})
},
现在我的需求是点击提交按钮的时候,去调用上面两个方法分别校验两个验证码是否正确,只有正确的情况下,才能去提交,于是我使用Promise.all() 去处理这两个函数,不知道这样写对不对,如果错了,应该怎么写才对
提交函数
confirm(){
let that = this;
Promise.all([this.verifyGA(12),this.checkCode(1)]).then(res=>{
console.log(res);
/* 正常处理提交流程 */
}).catch(error=>{
console.log(error);
/* 抛出错误 */
})
}
然后我发现如果上面两个函数都请求失败的时候,promise.all().catch() 中抛出的error错误是第二个函数中的错误,而不是第一个函数的,这是为什么,如何才能抛出所有函数的错误呢?
error错误是第二个函数的错误应该是由于第二个函数的reject执行的更早。
Promise.all resolve的触发需要数组中所有的promise都resolve,而reject只需要其中任何一个promise reject就会触发。
如何捕获所有的错误呢?
需要注意的是这里输出其实是
console.log(data)
执行,而非console.error(err)
执行