Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Mongo DB 的新手,我们可以在 java 中插入数据并使用 java 脚本从 Mongo DB 中检索数据吗?
请建议。
看一下 mongodb快速入门
看看 mongodb java教程。在这里您可以找到如何连接/查询/更新 mongodb。
要通过 javascript 从 mongodb 检索数据,请创建一些服务层(可以是简单的 rest api),例如,它将以json格式返回数据。
将MongoDB查询的输出打印到文件的Javascript方式
1]创建一个javascript文件
测试.js
cursor = db.printShardingStatus(); while(cursor.hasNext()){ printjson(cursor.next()); }
2]运行
mongo admin --quiet test.js > output.txt