我在我的node.js应用程序中使用GeoFirestore。在文档的第一行中,我有:
var GeoFirestore = require("geofirestore");
然后我使用代码
const geoFirestore = new GeoFirestore(collectionRef);
collectionRef是我的Firestore集合的有效引用。
问题是我得到了错误
“ TypeError:GeoFirestore不是构造函数”
这是什么问题?感谢您的帮助。
答案 0 :(得分:1)
geofirestore的index.js
导出了一些不同的文件,因此我可以说您的导入将无法进行。我相信您会想这样做(如果您没有使用Typescript或ES6 +):
var GeoFirestore = require("geofirestore").GeoFirestore;
让我知道这是否对您有用。