admin管理员组文章数量:1352177
In a database from Firebase, I need to update the value open and pass it to false for all child. How I can do it in Javascript ? Something like this
let dbCon = firebase.database().ref("/messages/" + *);
dbCon.update({
open: false
});
In a database from Firebase, I need to update the value open and pass it to false for all child. How I can do it in Javascript ? Something like this
let dbCon = firebase.database().ref("/messages/" + *);
dbCon.update({
open: false
});
Share
Improve this question
edited Apr 8, 2018 at 14:33
Frank van Puffelen
600k85 gold badges890 silver badges860 bronze badges
asked Apr 8, 2018 at 11:18
Monsieur SamMonsieur Sam
3331 gold badge7 silver badges20 bronze badges
3
- Update your state through a for loop or so? Your state should be synced to Firebase? – Satej S Commented Apr 8, 2018 at 11:25
- I edit it to explain, yes it have to be synced to firebase – Monsieur Sam Commented Apr 8, 2018 at 11:28
- 1 Check out github./tylermcginnis/re-base – Satej S Commented Apr 8, 2018 at 11:44
1 Answer
Reset to default 12The Firebase Database has no equivalent to SQL's UPDATE messages SET open=false
.
To update a node in Firebase, you must first have a reference to that specific node. And to get a reference to a node, you must know the full path to that node.
This means that you'll first need to read the data, then loop over it, and then update each child in turn. In code:
let dbCon = firebase.database().ref("/messages/");
dbCon.once("value", function(snapshot) {
snapshot.forEach(function(child) {
child.ref.update({
open: false
});
});
});
本文标签: javascriptUpdate all child in FirebaseStack Overflow
版权声明:本文标题:javascript - Update all child in Firebase - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743909316a2560097.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论