如何使用 REST/JSON/GET/POST 从我的节点服务器访问我的 couchdb?
Posted
技术标签:
【中文标题】如何使用 REST/JSON/GET/POST 从我的节点服务器访问我的 couchdb?【英文标题】:How can I access my couchdb from my node server using REST/JSON/GET/POST? 【发布时间】:2011-11-01 22:51:19 【问题描述】:我正在尝试从 node.js 服务器访问我的 couchdb。
我遵循了 nodejs 教程,并设置了这个简单的 nodejs 服务器:
var http = require('http');
http.createServer(function (req, res)
res.writeHead(200, 'Content-Type': 'text/plain');
res.end('Hello World\n');
).listen(80, "127.0.0.1");
console.log('Server running at http://127.0.0.1:80/');
我想向 nodejs 服务器发出 RESTful http 和 POST 请求。然后 nodejs 服务器应该能够向 Couchdb 发出 GET/POST 请求,Couchdb 以 JSON 对象响应。
我该怎么做?
【问题讨论】:
【参考方案1】:您可以使用 node.js 模块,例如 Cradle 来使用 CouchDB。
这里是可用的 Node.JS 模块列表:https://github.com/joyent/node/wiki/modules
【讨论】:
Cradle 有问题/泄漏。 真的吗?给我们一些关于这个的链接 Issue 我无法让DELETE
请求与摇篮一起工作,他们与request
一起工作(有时)。一般来说,DELETE
对沙发的请求与节点有关。不知道为什么。【参考方案2】:
只需发出 HTTP 请求。我会推荐request
这是一个例子from my code
request(
"uri": this._base_url + "/" + user._id,
"json": user,
"method": "PUT"
, this._error(cb));
这是另一个例子from my code
// save document
"save": function _save(post, cb)
// doc changed so empty it from cache
delete this._cache[post.id];
// PUT document in couch
request(
"uri": this._base_url + "/" + post._id,
"json": post,
"method": "PUT"
, this._error(function _savePost(err, res, body)
if (body)
body.id = post.id;
body.title = post.title;
cb(err, res, body);
));
【讨论】:
谢谢你,光荣的混蛋!这对我有用。 FSM 知道原因,但我一直在努力解决这些问题。不知道为什么所有其他节点扩展都不起作用,但是这个起作用了!谢谢!【参考方案3】:我有一个模块 (node-couchdb-api) 正是为此目的而编写的。它没有 ORM 或其他类似的功能,它只是 CouchDB 提供的 HTTP API 的简单包装器。它甚至遵循 Node.JS 为异步回调建立的约定,使您的代码更加一致。 :)
【讨论】:
【参考方案4】:首先我是nano
的作者,并将在此回复中使用它。
这里有一些简单的说明来开始使用 node.js 和 CouchDb。
mkdir test && cd test
npm install nano
npm install express
如果您安装了 couchdb,那就太好了。如果您不这样做,您将需要在iriscouch.com 在线设置实例
现在创建一个名为index.js
的新文件。在里面放置以下代码:
var express = require('express')
, nano = require('nano')('http://localhost:5984')
, app = module.exports = express.createServer()
, db_name = "my_couch"
, db = nano.use(db_name);
app.get("/", function(request,response)
nano.db.create(db_name, function (error, body, headers)
if(error) return response.send(error.message, error['status-code']);
db.insert(foo: true, "foo", function (error2, body2, headers2)
if(error2) return response.send(error2.message, error2['status-code']);
response.send("Insert ok!", 200);
);
);
);
app.listen(3333);
console.log("server is running. check expressjs.org for more cool tricks");
如果您为 CouchDB 设置了 username
和 password
,则需要将其包含在 url 中。在以下行中,我将 admin:admin@
添加到 url 以举例说明
, nano = require('nano')('http://admin:admin@localhost:5984')
这个脚本的问题是每次你发出请求时它都会尝试创建一个数据库。一旦您第一次创建它,这将失败。理想情况下,您希望从脚本中删除创建数据库,以便它永远运行:
var express = require('express')
, db = require('nano')('http://localhost:5984/my_couch')
, app = module.exports = express.createServer()
;
app.get("/", function(request,response)
db.get("foo", function (error, body, headers)
if(error) return response.send(error.message, error['status-code']);
response.send(body, 200);
);
);
);
app.listen(3333);
console.log("server is running. check expressjs.org for more cool tricks");
您现在可以手动创建,甚至可以以编程方式进行。如果您对如何实现这一目标感到好奇,可以阅读我不久前写的这篇文章 Nano - Minimalistic CouchDB for node.js。
有关详细信息,请参阅 expressjs 和 nano。希望这会有所帮助!
【讨论】:
以上是关于如何使用 REST/JSON/GET/POST 从我的节点服务器访问我的 couchdb?的主要内容,如果未能解决你的问题,请参考以下文章