gpt4 book ai didi

Node.js + Arangodb 建立连接并获取查询

转载 作者:搜寻专家 更新时间:2023-10-31 23:51:06 25 4
gpt4 key购买 nike

我是后端服务的新手。我一直在尝试从 Node 服务器连接到 arangodb。我在 arangodb 中创建了一个基本查询。 arangodb 中的用户身份验证非常复杂,node 和 arangadb 组合的教程很少。我在下面发布了我的代码。我在网上找到了这个例子。

DataService.js

var arangojs = require('arangojs');

// Const variables for connecting to ArangoDB database

const host = '192.100.00.000'
const port = '8529'
const username = 'abcde'
const password = 'abcde'
const path = '/_db/_system/_api/'
const databasename = 'xyzm_app'

// Connection to ArangoDB
var db = new arangojs.Database({
url: `http://${host}:${port}${path}${databasename}`,
databaseName: databasename
});

db.useBasicAuth(username, password);
//console.log(db);

module.exports = {
getAllControllers : function(){
return db.query('For x IN {user_details} RETURN NEW {
id: x._user_details/7977010,
name: x.char_ctrl_username,
email:x.char_ctrl_email
}')
.then(cursor => {
return cursor.all()

});
}

在数据库中查询

enter image description here

最佳答案

来自arangojs README :

// Or using a fully qualified URL containing the database path
const db = new Database({
url: `http://${username}:${password}@${host}:${port}/_db/${database}`,
databaseName: false // don't automatically append database path to URL
});
  • databaseName: string (Default: _system)

    Name of the active database.

    If this option is explicitly set to false, the url is expected to contain the database path and the useDatabase method can not be used to switch databases.

因此,您要么指定完整路径,如 http://host:port/_db/dbname 并设置 databaseName: false,要么使用 http://host:port 并指定 databaseName: "dbname"useDatabase("dbname")

/_api 永远不应成为路径的一部分。 arangojs 知道在哪里可以找到 API 端点并为您完成。

var arangojs = require('arangojs');

// Const variables for connecting to ArangoDB database
const host = '127.0.0.1'
const port = '8529'
const username = 'xyz'
const password = 'xyz'
const databasename = 'sgcdm_app'

// Connection to ArangoDB
db = new arangojs.Database({
url: `http://${host}:${port}`,
databaseName: databasename
});
db.useBasicAuth(username, password);

db.listCollections().then(function(res) {
res.forEach((coll, i) => {
console.log(`${i+1}. ${coll.name} (ID=${coll.id}, system=${coll.isSystem})`)
});
}, function(err) {
const res = err.response.body;
console.log(`Error ${res.errorNum}: ${res.errorMessage} (HTTP ${res.code})`);
});

成功时(数据库存在):

1. first (ID=264349479, system=false)
2. test (ID=264349463, system=false)

出错(未知数据库):

Error 1228: database not found (HTTP 404)

来自 GitHub 的交叉帖子

关于Node.js + Arangodb 建立连接并获取查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47791148/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com