database names cannot contain the character ' '错误
发布于 18 小时前 作者 ZubinCheung 74 次浏览 来自 问答

在项目中使用mongoose操作mongodb,更新数据时都会报MongoError: database names cannot contain the character ’ '错误,插入跟查询是没问题的,使用的是mongoose的findOneAndUpdate方法,相关代码如下:

    let model = this.getModel();
    return q.nbind(model.findOneAndUpdate, model)(args.conditions, args.update);

请大家帮忙看看,谢谢!

回到顶部