Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

MongoDB 教程

[+:

MongoDB 是一个文档数据库。它以一种称为 BSON 的 JSON 格式存储数据。

如果您不熟悉 JSON,请查看我们的 JSON 教程

MongoDB 中的一条记录是一个文档,它是由键值对组成的数据结构,类似于 JSON 对象的结构。

立即开始学习 MongoDB »

MongoDB 文档

MongoDB 数据库中的记录称为文档,字段值可以包括数字、字符串、布尔值、数组,甚至嵌套文档。

文档示例

{
	title: "Post Title 1",
	body: "Body of post.",
	category: "News",
	likes: 1,
	tags: ["news", "events"],
	date: Date()
}

通过示例学习

我们的“显示 MongoDB”工具可以轻松演示 MongoDB。它同时显示代码和结果。

示例

查找所有类别为“新闻”的文档。

db.posts.find( {category: "News"} )
自己尝试 »

通过练习学习

MongoDB 练习

练习

MongoDB 是什么类型的数据库?

MongoDB is a  database.

开始练习


我的学习

使用 W3Schools 上的免费“我的学习”程序跟踪您的学习进度。

登录您的帐户,开始赚取积分!

这是一个可选功能。您可以在 W3Schools 学习而无需使用“我的学习”。

Track your progress with at W3Schools.com

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.