【发布时间】:2021-12-12 01:05:49
【问题描述】:
我正在使用“react-firebase-hooks”,firebase web v9。我有这个错误:“TypeError: firebase__WEBPACK_IMPORTED_MODULE_2_.db.collection is not a function”
这是导致问题的代码:
import { useCollection } from 'react-firebase-hooks/firestore';
const [realtimePosts, loading, error] = useCollection(
db.collection('posts').orderBy('timestamp', 'desc')
);
【问题讨论】:
标签: reactjs firebase google-cloud-firestore next.js