连接到 MongoDB
使用 Deno MongoDB 客户端,您可以连接到运行在任何地方的 Mongo 数据库。
import { MongoClient } from "npm:[email protected]";
创建一个新的 MongoDB 客户端实例,该实例在本地端口 27017 上运行。
const client = new MongoClient("mongodb://127.0.0.1:27017");
连接到 MongoDB 服务器
await client.connect();
定义集合的模式
interface DinosaurSchema {
name: string;
skills: string[];
}
访问数据库
const db = client.db("animals");
访问数据库中的集合
const dinosaurs = db.collection("dinosaurs");
将新文档插入集合
await dinosaurs.insertOne({
name: "deno",
skills: ["dancing", "hiding"],
});
使用过滤器查找集合中的所有文档
const allDinosaurs = await dinosaurs.find({ name: "deno" }).toArray();
console.log(allDinosaurs);
关闭 MongoDB 客户端连接
client.close();
运行 此示例 在本地使用 Deno CLI
deno run --allow-net --allow-sys --allow-read https://docs.deno.org.cn/examples/mongo.ts