开发者问题收集

如何验证 Firebase 中是否存在数据

2016-12-06
1305

我在将数据保存到 firebase 时遇到问题,因为我的数据仅更新数据库中已有的数据,它不会插入新数据。当我创建一个新用户并解决一个练习时,当尝试在 firebase 中获取此数据时,它会返回此错误。

FIREBASE WARNING: Exception was thrown by user callback. TypeError: Can not convert undefined or null to object.

function writeUserData(userId, data) {
    var key    = Object.keys(data)[0];
    var values = Object.values(data)[0];
    console.log(values);

    firebase.database().ref('users/' + userId + '/' + jsData.topicId + '/' + key).set({
            topic_log: values
        });
    }
2个回答

查看此处的代码:

function go() {
   var userId = prompt('Username?', 'Guest');
   checkIfUserExists(userId);
}

var USERS_LOCATION = 'https://SampleChat.firebaseIO-demo.com/users';

function userExistsCallback(userId, exists) {
  if (exists) {
    alert('user ' + userId + ' exists!');
  } else {
    alert('user ' + userId + ' does not exist!');
  }
}

// Tests to see if /users/<userId> has any data. 
function checkIfUserExists(userId) {
  var usersRef = new Firebase(USERS_LOCATION);
  usersRef.child(userId).once('value', function(snapshot) {
    var exists = (snapshot.val() !== null);
    userExistsCallback(userId, exists);
  });
}
Bara' ayyash
2016-12-06

您可以使用数据快照的 exists() 方法检查数据。

例如:

var userRef = firebase.database().ref('users/' + userId);
userRef.once('value', function(snapshot) {
    if (snapshot.exists){
        console.log('user exists');
    }
});
Lesley
2016-12-06