gpt4 book ai didi

android - Firebase数据库搜索未返回任何结果

转载 作者:行者123 更新时间:2023-12-02 13:19:35 26 4
gpt4 key购买 nike

我试图在使用Firebase作为后端的数据库中进行用户查找。我试图在使用Firebase作为后端的数据库中进行用户搜索。我想通过搜索 View 进行搜索,以在recyclerview中显示结果。
但是,当进行搜索时,我的代码没有带来任何结果。

我的代码:

private fun configurarSearchView(view: View) {
view.searchView.setOnQueryTextListener(object : SearchView.OnQueryTextListener {
override fun onQueryTextSubmit(query: String): Boolean {
return false
}

override fun onQueryTextChange(newText: String): Boolean {
if (newText.isNotEmpty()) {
recyclerViewBeta.visibility = View.GONE
recyclerPesquisa.visibility = View.VISIBLE
pesquisarUsuarios(newText.toUpperCase())
Log.i("PESQUISA", newText.toUpperCase())
} else {
recyclerViewBeta.visibility = View.VISIBLE
recyclerPesquisa.visibility = View.GONE
}
return true
}
})
}

private fun pesquisarUsuarios(texto: String) {
Log.i("PESQUISA", "P: $texto")
val query: Query = FirebaseDatabase.getInstance().getReference().child("users").orderByChild("nomePesquisa")
.startAt(texto.toUpperCase()).endAt(texto.toUpperCase() + "\uf8ff")
query.addListenerForSingleValueEvent(object : ValueEventListener {
override fun onDataChange(dataSnapshot: DataSnapshot) {
for (ds in dataSnapshot.children) {
val usuario = ds.getValue(Usuario::class.java)!!
listaPesquisa.add(usuario)
Log.i("PESQUISA", "R: ${usuario.nomeExibicao}")
}
recyclerPesquisa.adapter?.let { it.notifyDataSetChanged() }
val total: Int = listaPesquisa.size
Log.i("PESQUISA", "total$total")
}

override fun onCancelled(databaseError: DatabaseError) {}
})

数据库:
"usuarios" : {
"5P6DzPIEuiSKU5UYGo03AwSMTED3" : {
"email" : "valter@teste.com",
"id" : "5P6DzPIEuiSKU5UYGo03AwSMTED3",
"nickExibicao" : "valter",
"nomeExibicao" : "Valter dos Santos",
"nomePesquisa" : "VALTER DOS SANTOS",
"status" : "1577010585880",
},

为什么不显示数据?如何解决这个问题?
提前致谢!

最佳答案

您向数据库引用中提供了错误的子用户用户,根据您的数据库结构,该用户应为使用。尝试使用

FirebaseDatabase.getInstance().getReference()
.child("usuarios")
.orderByChild("nomePesquisa")
.startAt(texto.toUpperCase())
.endAt(texto.toUpperCase() + "\uf8ff")
.addListenerForSingleValueEvent();

关于android - Firebase数据库搜索未返回任何结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59636294/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com