Firebase docs に示されている例のように、ユーザー名が使用されているかどうかを確認しようとしています:
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);
});
}
しかし、私が参照しているデータは、参照に問題があるデータのレイヤーにあります。
firebaseio.com/{userID}/primary/{username}
151 (ユーザー ID) | |> プライマリ | |> ユーザー名: ユーザー名
userID の子の下にあるプライマリ ツリーの下のユーザー名フィールドを確認したいのですが、何か提案はありますか?