我是mongodb的新手并尝试以json格式导出集合。当我执行从在线手册中学习查询的查询时,我收到错误。
输入:
mongoexport -d test -c Nick -o c:/results.json --journal
输出:
error parsing command line options: --dbpath and related flags are not supported in 3.0 tools.
我不确定如何解释输出。
我正在使用mongodb 3.0.4版本。我在命令行中而不是在shell中实现查询。
答案 0 :(得分:1)
--journal
选项是导致问题的选项,因为该选项已从Mongo 3.0.0中移除(http://docs.mongodb.org/manual/reference/program/mongoexport/#options)
删除--journal
选项,它应该可以正常工作。
答案 1 :(得分:1)
我认为不支持app.controller('AcronymLibrary', function($scope) {
$scope.acronyms = [
{type: 'A', acronym: 'AP', title: 'Accounts Payable'},
{type: 'A', acronym: 'AR', title: 'Accounts Receivable'},
{type: 'A', acronym: 'ASN', title: 'Advanced Shipping Notice'},
{type: 'A', acronym: 'ATP', title: 'Available to Promise'},
{type: 'B', acronym: 'BA', title: 'Business Analyst'},
{type: 'B', acronym: 'BT', title: 'Business Technology'},
{type: 'C', acronym: 'CM', title: 'Customer Master'},
{type: 'D', acronym: 'DBA', title: 'Database Administer'},
{type: 'D', acronym: 'DC', title: 'Distribution Center'},
{type: 'E', acronym: 'ECC', title: 'Extended Care Component'},
{type: 'F', acronym: 'FICO', title: 'Financials & Controlling'},
{type: 'G', acronym: 'GL', title: 'General Ledger'},
{type: 'K', acronym: 'KPI', title: 'Key Performance Indicator'}
];
});
标记--journal
。
在没有in 3.0 versions
选项的情况下,查询工作正常。
非常感谢。