我想在我的颤振项目中使用 mongo atlas,目前,我正在使用mongo_dart包,我可以直接从我的应用程序中添加文档。
var db = await Db.create("mongodb+srv://<username>:<password>@cluster0.cwdcc.mongodb.net/<database>?retryWrites=true&w=majority");
await db.open();
var coll = db.collection('Users');
最近看到有人说我需要创建API,这样用MongoDB不好。你能解释一下为什么我需要创建一个 API 吗?