首先,我已经阅读了CouchDB 文档更新处理程序(就地更新)并在该问题的答案中采用了代码。
我有一个更新处理程序,它接受一个查询字符串数量,并且应该将它添加到给定文档的 doc.count 中。它没有添加这两个数量,而是仅列出它们。EG 5+5=55。还将 parseInt() 添加到 doc.count 会产生错误消息:
{"error":"render_error","reason":"undefined response from update function"}
我的更新处理程序是:
"countPlus": "function(doc, req) {var amount1 = doc.count; var amount2 = parseInt(req.query.amount); doc.count = amount1 + amount2; return [doc, doc.count]; }"
处理请求的js是:
if (count != null && count != NaN && count != 0) {
var currentCounter = $.ajax({
type: "POST",
async: false,
url: $(location).attr("href").replace("_show/action", "_update/countPlus") + "?amount=" + count,
contentType : "application/json",
dataType: "json"
});
var currentCountResponse = currentCounter.responseText;
alert(currentCountResponse);