下面是MongoDB的基本增删改查代码示例:
- 连接MongoDB数据库:
const MongoClient = require(‘mongodb’).MongoClient;
const url = ‘mongodb://localhost:27017’;
const dbName = ‘mydatabase’;
MongoClient.connect(url, function(err, client) {
if (err) throw err;
const db = client.db(dbName);
// 在这里执行你的增删改查操作
client.close();
});
- 插入数据:
const collection = db.collection(‘mycollection’);
const data = { name: ‘John’, age: 30 };
collection.insertOne(data, function(err, result) {
if (err) throw err;
console.log(‘插入成功’);
});
- 查询数据:
const collection = db.collection(‘mycollection’);
const query = { name: ‘John’ };
collection.find(query).toArray(function(err, result) {
if (err) throw err;
console.log(‘查询结果:’, result);
});
- 更新数据:
const collection = db.collection(‘mycollection’);
const query = { name: ‘John’ };
const update = { $set: { age: 31 } };
collection.updateOne(query, update, function(err, result) {
if (err) throw err;
console.log(‘更新成功’);
});
- 删除数据:
const collection = db.collection(‘mycollection’);
const query = { name: ‘John’ };
collection.deleteOne(query, function(err, result) {
if (err) throw err;
console.log(‘删除成功’);
});
请注意,在实际使用中,你需要根据你的数据库和集合名称进行相应的调整。此外,还有许多其他操作和选项可用,你可以参考MongoDB的官方文档以获取更多详细信息。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。