कंपोज़िट टाइप, जिसमें FirebaseError
ऑब्जेक्ट और इंडेक्स, दोनों शामिल होते हैं. इसका इस्तेमाल, गड़बड़ी वाले आइटम को पाने के लिए किया जा सकता है.
हस्ताक्षर:
export interface FirebaseArrayIndexError
प्रॉपर्टी
प्रॉपर्टी | टाइप | ब्यौरा |
---|---|---|
गड़बड़ी | Firebase से जुड़ी गड़बड़ी | गड़बड़ी वाला ऑब्जेक्ट. |
इंडेक्स | नंबर | ओरिजनल अरे में, गड़बड़ी वाले आइटम का इंडेक्स, जिसे एपीआई मेथड के हिस्से के तौर पर पास किया गया है. |
FirebaseArrayIndexError.error
गड़बड़ी वाला ऑब्जेक्ट.
हस्ताक्षर:
error: FirebaseError;
FirebaseArrayIndexError.index
ओरिजनल अरे में, गड़बड़ी वाले आइटम का इंडेक्स, जिसे एपीआई मेथड के हिस्से के तौर पर पास किया गया है.
हस्ताक्षर:
index: number;
उदाहरण
var registrationTokens = [token1, token2, token3];
admin.messaging().subscribeToTopic(registrationTokens, 'topic-name')
.then(function(response) {
if (response.failureCount > 0) {
console.log("Following devices unsucessfully subscribed to topic:");
response.errors.forEach(function(error) {
var invalidToken = registrationTokens[error.index];
console.log(invalidToken, error.error);
});
} else {
console.log("All devices successfully subscribed to topic:", response);
}
})
.catch(function(error) {
console.log("Error subscribing to topic:", error);
});