Я пытаюсь обновить массив в моем firestore, я следовал документации, предоставленной Google (https://firebase.google.com/docs/firestore/manage-data/add-data), но она не работает, я также проверил, чтобы убедиться, что у меня последняя версия firebaseМодуль npm.
Вот мой код:
> db
.collection('Data')
.doc('One')
.collection('Doc')
.doc(this.$route.params.id.toLowerCase())
.update({
myArr: firebase.firestore.FieldValue.arrayUnion(
'test'
),
})
.then(() => console.log('Successfully written'))
.catch(err => console.log(err));