有没有办法在反应原生的 MongoDB 缝合应用程序中创建一个集合。我尝试了正常的 MongoDB 方式
const stitchClient = Stitch.getAppClient(myAppID);
const mongodb = stitchClient.getServiceClient(RemoteMongoClient.factory, "mongodb-atlas")
.db("ToDo");
// console.log("mongodb is ", mongodb);
mongodb.createCollection("test", (err, res) => {
if (err) {
throw ("Error creating a collection : ", err);
}
console.log("Collection creted");
});
但是随后 react-native 不断给出此错误:
TypeError: undefined is not a function('MongoDB.createCollection...'附近)