在CouchDB _update函数中返回_rev和_id?

时间:2011-07-12 03:57:07

标签: couchdb

有没有办法从_update函数将新创建的文档的_rev和_id字段返回给客户端?

1 个答案:

答案 0 :(得分:8)

你可以,但解决方案并不完美。

您已经知道更新功能中的文档_id。您要么自己计算,要么使用用户输入,或者如果您希望让CouchDB自动生成ID,请使用req.uuid值。

function(doc, req) {
    // An example _update function.
    var id;

    id = "Whatever";   // Pick one yourself, or...
    id = req.query.id; // Let the user specify via ?id=whatever, or...
    id = req.body;     // Let the user specify via POST or PUT body, or...
    id = req.uuid;     // Use a random UUID from CouchDB

    var doc = {"_id":id, "other_stuff":"Whatever other data you have"};
    log("Document _id will be: " + doc._id);
    return([doc, {json: {"success":true, "doc":doc}]);
}

不幸的是,您不知道show函数中的_rev。但是,CouchDB将通过HTTP标头X-Couch-Update-NewRev将其发送到客户端。

例如:

HTTP/1.1 201 Created
X-Couch-Update-NewRev: 1-967a00dff5e02add41819138abb3284d
Server: CouchDB/1.1.0 (Erlang OTP/R14B03)
Date: Tue, 12 Jul 2011 06:09:34 GMT
Content-Type: application/json
Content-Length: 14

{"stuff":true}