Firebase帮助:在新推送时避免使用新ID

时间:2016-04-25 15:51:12

标签: javascript json firebase firebase-realtime-database

firebase json tree

按此推送数据:

myDataRef.push({name : name, text: text});

我不希望每次推送都能创造出来-KGD ************'条目。我想匿名添加数据,我想要所有这样的数据:

web>
    data>
        ran_name>                 //this being first push
            one : 1
            two : 2
        name : esjgnj             //this being second push
        text : gjnse              //this being third push

1 个答案:

答案 0 :(得分:3)

如果您使用Update(),则每次都不会生成唯一ID,只是更新该位置的数据。像这样:

myDataRef.update({name : name, text: text});