您好我正在使用ionic和firebase构建应用程序,这是我的firebase模型:
{
"users" : {
"D972XU" : {
"8b91cc58-a962-4753-abd9-896b8a9418d5" : {
"email" : "jim@aol.com",
"house_key" : "D972XU",
"username" : "jim"
},
"8ea6537a-6385-4797-8fc3-62e9e5f06ac6" : {
"email" : "george@gmail.com",
"house_key" : "D972XU",
"username" : "george"
}
},
"V1OVU5" : {
"f4f283c0-f503-4d50-8af8-7a9ad592ca74" : {
"email" : "john@yahoo.com",
"house_key" : "V1OVU5",
"username" : "john"
}
},
"YOKSPN" : {
"891bb612-4666-4095-be62-87c81f65c895" : {
"email" : "jeff@gmail.com",
"house_key" : "YOKSPN",
"username" : "jeff"
}
}
}
}

在模型中,用户存储在随机生成的字符串下。我的问题是我试图在firebase文档中使用此代码查找字符串的值:
var ref = new Firebase("https://dinosaur-facts.firebaseio.com/dinosaurs");
ref.orderByChild("height").on("child_added", function(snapshot) {
console.log(snapshot.key() + " was " + snapshot.val().height + " meters tall");
});
我的版本:
app.factory('fireBaseData', function($firebase) {
var usersRef = new Firebase("https://mynextapp.firebaseio.com/users");
return {
ref: function() {
return ref;
}
};
});
app.controller('LoginCtrl', function($scope, $state, fireBaseData) {
fireBaseData.usersRef().child(authData.uid).orderByChild("email").on("child_added", function(snapshot) {
console.log(snapshot.key());
});
});
根据文档,您不应该知道特定恐龙/字符串的值来访问其详细信息。但是,代码对我不起作用。请帮忙吗?
请注意,/ users,D972XU,V10VU5和YOKSPN的子节点是随机生成的。
答案 0 :(得分:1)
如果您想根据子值返回节点(键),请输入以下代码:
var ref = new Firebase("https://mynextapp.firebaseio.com/users/D972XU");
ref.orderByChild("username").equalTo("jim").on("child_added", function(snapshot) {
console.log(snapshot.key());
});
或邮件
var ref = new Firebase("https://mynextapp.firebaseio.com/users/D972XU");
ref.orderByChild("email").equalTo("jim@aol.com").on("child_added", function(snapshot) {
console.log(snapshot.key());
});
在这种情况下,您的/ users节点具有随机生成的直接子节点,您所追踪的数据位于这些子节点中。因此,查询无法达到'你的数据太深了。即使是深度查询也需要更多信息才能运行。所以你有:
/用户/ random_node_name / UID
所以这个
fireBaseData.usersRef()。子(authData.uid)
赢了,因为它省去了用户和authData.uid之间的节点。
但是 - 结构中提供了解决方案。随机生成的节点名称也存储在数据中(重复),这可以消除将其用作密钥的需要。
将数据上移一级是一种解决方案,因此请将结构更改为:
{
"users" : {
"8b91cc58-a962-4753-abd9-896b8a9418d5" : {
"email" : "jim@aol.com",
"house_key" : "D972XU",
"username" : "jim"
},
"8ea6537a-6385-4797-8fc3-62e9e5f06ac6" : {
"email" : "george@gmail.com",
"house_key" : "D972XU",
"username" : "george"
},
"f4f283c0-f503-4d50-8af8-7a9ad592ca74" : {
"email" : "john@yahoo.com",
"house_key" : "V1OVU5",
"username" : "john"
},
"891bb612-4666-4095-be62-87c81f65c895" : {
"email" : "jeff@gmail.com",
"house_key" : "YOKSPN",
"username" : "jeff"
}
}
}
作为旁注,我建议的结构传统上是'如何在Firebase中构建/ users节点。它已被证明是一致的,可扩展的和可维护的(并且使用规则来更轻松地保护您的数据)。
您的原始结构将成为使规则适用的承诺。