问题似乎很简单.我有一个数据库(测试)和一个名为(用户)的集合,所以我运行命令:
mongoexport -d test -c users -o output.json
但是我收到以下错误:

根据我迄今为止通过互联网发现的情况,这可能与文件路径有关,但我不确定如何修改这个因为我从来没有弄乱PATH变量由于糟糕的经历...
我最近开始使用AngularJS和Lumx.我已尝试添加可在网站"通知"标签下找到的通知.链接在这里.
无论如何,我得到的错误是
"错误:未定义LxNotificationService"
所以我将它添加到控制器中的服务列表中.
下面是我的app.js文件
var testing = angular.module('testing', []);
testing.controller('mainCtrl',function($ scope){
$scope.notify = function(type)
{
    if (type === 'simple')
    {
        LxNotificationService.notify('Lorem Ipsum');
    }
    else if (type === 'sticky')
    {
        LxNotificationService.notify('Lorem Ipsum', undefined, true);
    }
    else if (type === 'icon')
    {
        LxNotificationService.notify('Lorem Ipsum', 'android');
    }
    else if (type === 'color')
    {
        LxNotificationService.notify('Lorem Ipsum', undefined, false, 'grey');
    }
    else if (type === 'info')
    {
        LxNotificationService.info('Lorem Ipsum');
    }
    else if (type === 'success')
    {
        LxNotificationService.success('Lorem Ipsum');
    }
    else if (type …