Retrieving data from Firebase Realtime Database in Android(从 Android 中的 Firebase 实时数据库中检索数据)
问题描述
我是 Firebase 和 NoSQL 的新手.我有一个 Android 演示,带有一个城市自动完成文本字段,我想在输入时从我的 Firebase 数据库中填充我拥有的城市.
I'm new to Firebase and NoSQL. I have an Android Demo, with a City Autocomplete Text Field in which I want to populate the cities I have from my Firebase DB, while typing.
{ "cities":{
"Guayaquil":true,
"Gualaceo":true,
"Quito":true,
"Quevedo":true,
"Cuenca":true,
"Loja":true,
"Ibarra":true,
"Manta":true
}
}
这是我目前所拥有的.
如何从以字母开头的数据库城市中检索(从键盘输入)?如果我开始输入G",我想收到Guayaquil"和Gualaceo".
How can I retrieve from the DB cities that start with a letter (input from keyboard)? If I start typing "G", I want to receive "Guayaquil" and "Gualaceo".
如果我使用 orderByValue 总是返回一个空快照.
If I use orderByValue always returns an empty snapshot.
如果我使用 orderByKey 返回整个列表.
If I use orderByKey return the whole list.
Query citiesQuery = databaseRef.child("cities").startAt(input).orderByValue();
citiesQuery.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
List<String> cities = new ArrayList<String>();
for (DataSnapshot postSnapshot: dataSnapshot.getChildren()) {
cities.add(postSnapshot.getValue().toString());
}
注意:如果您能推荐更好的数据结构,欢迎您.
Note: If you can recommend a better data structure, you're welcome.
推荐答案
@NicholasChen 已发现问题.但这是您使用 3.x SDK 实现的方式:
@NicholasChen has identified the problem. But here's the way you'd implement using the 3.x SDK:
DatabaseReference cities = databaseRef.child("cities")
Query citiesQuery = cities.orderByKey().startAt(input).endAt(input+"uf8ff");
citiesQuery.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
List<String> cities = new ArrayList<String>();
for (DataSnapshot postSnapshot: dataSnapshot.getChildren()) {
cities.add(postSnapshot.getValue().toString());
}
从用户输入开始,到以用户输入开头的最后一个字符串结束,您将获得所有匹配项
By starting at the user input and ending at the last string that starts with the user input, you get all matching items
对于相对较短的项目列表,Ryan 的方法也可以正常工作.但是上面的 Firebase 查询会过滤服务器端.
For relatively short lists of items Ryan's approach will also work fine. But the above Firebase query will filter server-side.
我刚刚运行了这段代码:
I just ran this code:
DatabaseReference databaseRef = FirebaseDatabase.getInstance().getReference("39714936");
String input = "G";
DatabaseReference cities = databaseRef.child("cities");
Query citiesQuery = cities.orderByKey().startAt(input).endAt(input + "uf8ff");
citiesQuery.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
List<String> cities = new ArrayList<String>();
for (DataSnapshot postSnapshot : dataSnapshot.getChildren()) {
cities.add(postSnapshot.getValue().toString());
}
System.out.println(cities);
}
@Override
public void onCancelled(DatabaseError databaseError) {
}
});
它打印出来了:
是的
是的
如此明显地匹配两个城市.
So clearly matches two cities.
随意对我的数据库进行测试:https://stackoverflow.firebaseio.com/39714936
Feel free to test against my database: https://stackoverflow.firebaseio.com/39714936
这篇关于从 Android 中的 Firebase 实时数据库中检索数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 Android 中的 Firebase 实时数据库中检索数据
基础教程推荐
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
