我有一個(gè)firebase函數(shù),其中我手動(dòng)拋出一個(gè)錯(cuò)誤,其中包含如下狀態(tài)和消息:throw new functions.https.HttpsError('permission-denied', 'Token does not match');我從服務(wù)器獲得的響應(yīng)如下所示(使用chrome dev控制臺):{"error":{"message":"Token does not match","status":"PERMISSION_DENIED"}}但是當(dāng)我像這樣調(diào)用函數(shù)時(shí),錯(cuò)誤中沒有狀態(tài)(使用AngularFire2):try { return await this.functions.httpsCallable<void, void>('testFunc')().toPromise();} catch (e) { console.log(e.name); // "Error" console.log(e.message); // "Token does not match" console.log(e.status); // undefined}有沒有辦法獲得它的狀態(tài),因?yàn)槲覍幵笝z查而不是.if(e.status == 'PERMISSION_DENIED')if(e.message == 'Token does not match')
你能讀懂火庫函數(shù)的 HttpsError 狀態(tài)嗎?
慕妹3146593
2022-08-18 15:31:46