我正在创建一个猫鼬查询,该查询会获取一些过滤的记录,然后执行limit + offset并给出结果。
我希望同时获得过滤的记录总数。我该怎么做到。
val comment = Comment(currentUser!!.uid, currentUser.displayName, System.currentTimeMillis(), message, currentUser.photoUrl!!.toString(), imagePath)
val postValues = comment.toMap()
reference.push().setValue(postValues)
请帮助。