Node.js,JSON输出

时间:2017-04-04 05:58:47

标签: node.js orientdb

我不知道怎么把这个但是我有以下代码连接到orientdb然后我正在运行一个类的查询,一切正常。

// app/index.js
//below the API to intiallize SERVER

var Oriento = require('orientjs');
var server = Oriento({
    host: 'xxxxxx',
    port: 2424,
    username: 'root',
    password: 'password'
});

// below is to initial database API 
var db = server.use({
    name: 'DBname',
    username: 'root',
    password: 'password'

});

console.log('I am using :', db.name);

db.open().then(function() {
    return db.query('SELECT FROM customers where @rid=12:1');
}).then(function(res) {
    console.log(res);
    db.close().then(function() {
        console.log('closed');
    });
});

查询的结果是JSON格式的输出 我的问题是:我希望从该查询返回的每个属性都保存在变量

注意:为什么我要这个?因为我想将这些变量插入关系数据库....我是否遵循正确的策略?如果没有请告诉我我能做什么

感谢。

0 个答案:

没有答案