kotlin 将数据从recyclerview传递到firebase

r1wp621o  于 2022-11-25  发布在  Kotlin
关注(0)|答案(1)|浏览(146)

我尝试将数据从recyclerview保存到firebase,但出现错误,因为数据为空,我不知道为什么

循环视图代码

类别

传递数据

owfi6suc

owfi6suc1#

这里你实际上是保存它firebase然后赋值。当你为student创建对象值时,不会有值。另外注意,根据你的代码,当给予adapter.names.String()将把所有的名称保存在firebase数据库的一个字段中。

private fun SaveStudents (student: Students) {
     var database = Firebase.database.reference 
     student.idStudent = UUID.randomUUID().tostring
     student.name = adapter.names.toString()
     student.noControl = adapter.details.toString()
     //Student data populated
     //Then save it to firebase.
     database.child("students").child(student.idStudent).setValue(student)
}

相关问题