Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. "709894892396" : {
  2. "userComment" : {
  3. "comment" : "comment2",
  4. "dateComment" : 23423423143,
  5. "productId" : "892396",
  6. "ratting" : "5",
  7. "userId" : "709894",
  8. "userName" : "Jon"
  9. }
  10. }
  11.  
  12. db.ref("/").orderByChild("productId").equalTo("892396").on("value", function(snapshot) {
  13. console.log(snapshot.val());
  14. response.send(snapshot.key + " was " + snapshot.val()).end();
  15. }, function (errorObject) {
  16. response.send("The read failed: " + errorObject.code).end();
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement