DataSnapshot.getChildrenCount 有错误 "The getter 'getChildrenCount' isn't defined for the type 'DataSnapshot'."

DataSnapshot.getChildrenCount has error "The getter 'getChildrenCount' isn't defined for the type 'DataSnapshot'."

我正在尝试计算一条路径中有多少 children。我找不到其他人遇到这个问题。

getChildrenCount() 方法是 Android Firebase 实时数据库 SDK 的一部分。但是由于您使用 Flutter 进行了标记,因此您可能正在寻找 snapshot.children.length。另请参阅 DataSnapshot class.

的参考文档