FirebaseError has a "code" propertyですが、約束のキャッチメソッドでそれをどのように読み取っていますか?以下は、の活字体エラースロー:コードのプロパティにアクセスするにはProperty 'code' does not exist on type 'Error'.
AngularFire/TypeScriptでFirebaseErrorの "code"プロパティにどのようにアクセスしますか?
this.af.database
.object(`/some/path`)
.set(newObj)
.then(data => {
console.log('success');
})
.catch(err => {
// Property 'code' does not exist on type 'Error'.
console.log(`code`, err.code);
});
ありがとう!あなたは最新のアングラーファイアーの詳細なドキュメントをどこから見つけることができますか?それは一緒に働くお尻の痛みです – Ruben