我正在尝试做orientjs并表达4集成。
我对如何建立通往index.js的路线感到困惑。

由于orientjs刚刚发布,所以我仍然找不到任何教程。

现在,我只想从orientdb中进行简单选择。

有人可以给我一些建议吗?

谢谢

最佳答案

首先,您需要在您的Express应用程序中导入orientjs

npm install orientjs --save


之后,需要orientjs并创建到orientDb的连接。

var orientJs = require('orientjs');
var orientDb = OrientJs({
    host: "yourhostName",
    port: "orientdb Port ",
    username: "OrientDB user Name",
    password: "password"
});


现在指定您要连接的数据库

var db = orientDb.use({
    name: 'database name',
    username: 'database user',
    password: 'password'
});


完成后,您可以使用“ db”运行查询。现在,您可以使用原始查询或orientjs查询构建器来编写查询。

这可以像

db.select().from(className).all().then(funtion(res){
       console.log(res);
 },function(err){
       console.log(err);
 });

关于express - orientjs和expressjs 4集成,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31769260/

10-09 20:07