如何将项目添加到数组

时间:2019-07-28 01:43:05

标签: javascript ionic-framework google-cloud-firestore

我不确定我是否需要在使用AngularFirestore的凡世通中将项目添加到数组中。
我正在尝试类似的东西

let newValue =“ 2”

让userDoc = this.fireStore.doc('user /'+ uid)

userDoc.update({头像:{数组:[newValue]}},{合并:true})

但是那样替换文档数组。 例如:[“ 1”] <-添加[“ 2”]。 -> [“ 2”]

{
  "name": "teste",
  "avatar": {
  "array" : [ "1"] <-- add ["2"] . --> ["1", "2"] 
}

我期望这样:[“ 1”] <-添加[“ 2”]。 -> [“ 1”,“ 2”]

:)

0 个答案:

没有答案