如何编辑密钥的值。在图片中,我想将密钥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。但我需要使用很多带宽