如何在MongoDB中从JSON数据创建集合?

时间:2017-05-23 13:54:53

标签: javascript json mongodb

我有以下J SON数据。如何平衡以下收集的平衡?

fill_between

2 个答案:

答案 0 :(得分:0)

MongoDB为此提供了mongoimport -c people -d example --mode upsert --file people-20160927.json 工具。例如:

speed

C 用于收集, D 用于数据库。 Read more here并且不要忘记您的JSON应该是有效的extended JSON

答案 1 :(得分:0)

您可以通过以下方式完成:

mongoimport --db <db-name> --collection <collection-name> --file ~/location/<file-name>.json