我发生了以下错误
UnhandledPromiseRejectionWarning:未处理的承诺被拒绝 (拒绝ID:1):MongoError:E11000重复键错误集合: LearningLocker_V2.statements索引:id_1 dup键:{:null}
我的代码是
var express = require('express');
var app = express();
const xapi = require('vtc-lrs');
app.use("/xapi", new xapi());
let options = {
lrs: new xapi.LRS(),
connectionString: "mongodb://192.168.1.38:27017/LearningLocker_V2",
getUser: function (req, username, password) {
return new xapi.Account("lrsuser", "test123", true, true);
},
baseUrl: "http://localhost:8010/xapi"
};
app.use("/xapi", new xapi(options));
在上面的代码中,我连接了mongodb远程服务器,但是它不起作用。我还要使用xapi vts-lrs,所以不知道如何使用它。