1

WindowsコマンドプロンプトでjsonArrayをmongoDBインポートしようとしています。

私の命令は、

C:\mongo>mongoimport --jsonArray -d testdb -c testcollection -f my_test_file.json

ファイルmy_test_file.jsonはC:\mongoに存在し、ファイルには次のものが含まれています。

[{"id": 1, "data":"test"}]

コマンド プロンプトの出力のみconnected to: 127.0.0.1で、インポートは行われません。

上記のコマンドを実行したときに、 dbを実行するコマンド プロンプトが表示されconnection acceptedます。

ここで私が見逃しているものに誰でも気付くことができますか?

4

1 に答える 1

7

フラグ「-f」はフィールドを示しますが、ファイルではないと思います。コマンドから削除するだけで、すべてが正常に機能するはずです。

C:\mongo>mongoimport --jsonArray -d testdb -c testcollection my_test_file.json
于 2015-01-11T18:18:28.383 に答える