gpt4 book ai didi

node.js - Cradle CouchDB,cradle.Connection 函数参数是什么?

转载 作者:搜寻专家 更新时间:2023-11-01 00:26:56 26 4
gpt4 key购买 nike

初学者问题。

下面是 Cradle CouchDB 文档中给出的示例: https://github.com/cloudhead/cradle

什么是 http://living-room.couch

什么是 5984?

new(cradle.Connection)('http://living-room.couch', 5984, {
cache: true,
raw: false
});

我正在尝试从我的 couchdb 获取信息:

网址:subdomain.mywebsite.com

Node 端口:12345

couchdb 端口:67891

我尝试了使用上述代码的不同方式进行连接,但出现以下错误。

什么是正确的连接方式?

17 May 09:50:57 - [nodemon] restarting due to changes...
17 May 09:50:57 - [nodemon] ./test_couch.js


17 May 09:50:57 - [nodemon] starting node
Server running somewhere
request starting...
request starting...


node.js:181

throw e; // process.nextTick error, or 'error' event on first tick


^
Error: ECONNREFUSED, Connection refused
at Socket._onConnect (net.js:602:18)
at IOWatcher.onWritable [as callback] (net.js:186:12)

17 May 09:51:05 - [nodemon] app crashed - waiting for file change before starting...

最佳答案

来自您发布链接的同一文档,但仅在此 JS 文件的代码文件夹中 https://github.com/cloudhead/cradle/blob/master/lib/cradle.js

cradle.Connection = function Connection(/* variable args */) {
var args = Array.prototype.slice.call(arguments),
host, port, remote, auth, options = {};

args.forEach(function (a) {
if (typeof(a) === 'number' || (typeof(a) === 'string' && /^\d{2,5}$/.test(a))) {
port = parseInt(a);
} else if (typeof(a) === 'object') {
options = a;
host = host || options.host;
port = port || options.port;
auth = options.auth;
} else {
host = a;
}
});

所以它接受你给它的任何参数,并将它切片成一个数组。

What is 5984?

这是要连接的端口,正如我分享的这段代码片段所证明的那样。

它实际上接受三种类型的参数,一个端口号(长度在 2 到 5 位数字之间)、一个字符串和一个用于配置的对象。

您可以只提供一个对象并将其部分声明为:

new(cradle.Connection)({
host: 'http://living-room.couch',
port: 67891,
cache: true,
raw: false
});

效果一样

关于node.js - Cradle CouchDB,cradle.Connection 函数参数是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6032917/

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