Firebase - 更新密钥的值以及如何使聊天未读

时间:2016-11-11 03:47:51

标签: javascript firebase firebase-realtime-database

如何编辑密钥的值。在图片中,我想将密钥1:5更新为1:8。

 test = firebase.database().ref('coun/1/');
      test.child($('#slt').val()).once('value', function(snapshot) {
        key = $('#slt').val();
        if (snapshot !== null){
          test.child(key).set({key : snapshot.val() + 1 });
        }
      });

在我的项目中,我希望用户看到聊天未读 - 我该怎么做? EX:用户在房间聊天的名称中看到5 我已使用Localstorage设置它,但我必须运行setTimeout(10000)来更新Localstorage。但我需要使用很多带宽

enter image description here

0 个答案:

没有答案