Picture of react redux firebase documentation
我看到了它们如何在rrfConfig中包含状态参数。这是否意味着我需要在Cloud Firestore上创建一个状态集合。另外,我将如何实际实施此操作以使我能够检索用户的在线状态。我对如何在我的React项目中构建此结构感到困惑。非常感谢您的帮助。
答案 0 :(得分:0)
react-redux-firebase
中的状态功能包装了Firebase实时数据库中的类似功能,具体取决于该数据库的Web套接字性质。由于Firestore使用完全不同(且无连接)的有线协议,因此该功能在Cloud Firestore中不是本机可用的。
因此,您需要使用实时数据库在react-redux-firebase
中使用此功能,或如implementing presence in Firestore with Cloud Functions and Realtime Database上Firebase文档中所示将其包装在Cloud Firestore中。