如何使用Express和xapi与vtc-lrs软件包连接mongo db LearningLocker_v2

时间:2018-09-27 09:54:10

标签: node.js mongodb learning-locker

我是xapi的新手,我不知道将mongo db与express和vtc-lrs软件包的用法集成在一起。 在这里,我使用以下链接作为参考npm package link

我的代码是:

var express = require('express');
var app = express();
var http = require('http');
const xapi = require('vtc-lrs');
var bodyParser = require('body-parser');
app.use(bodyParser.urlencoded({ extended: true }));

app.use("/xapi", new xapi());
let options = {
lrs: new xapi.LRS(),  
connectionString:"mongodb://remote_url:27017/LearningLocker_V2",
getUser:function(req, res) {
  res.send("Connected Succesfully!");
},
baseUrl: "http://localhost:3000/xapi"
};
app.use("/xapi", new xapi(options) );

运行此命令时出现以下错误screenshoot

0 个答案:

没有答案