我已经使用以下测试代码在CouchDB中创建了更新处理程序(在插入Couch之前,我要删除换行符):

function (doc, req) {
    if (req['userCtx']['roles'].indexOf('editor') < 0) {
        return [null, 'Access denied'];
    }
    if (!doc) {
        if (/*!('_id' in req) &&*/ !req['_id'] /*&& 'title' in req['body']*/ && !!req['body']['title'] /*&& 'content' in req['body']*/ && !!req['body']['content']) {
            return [{ 'title': req['body']['title'], 'content': req['body']['content'], 'date': new Date(), 'edited_by': req['userCtx']['name'] }, 'Created' + toJSON(req)];
        }
        return [null, 'Empty' + toJSON({ 'no_id': !req['_id'], 'title': !!req['body']['title'], 'content': !!req.body['\"content\"'], 'body':req.body })];
    }
    doc['date'] = new Date();
    doc['edited_by'] = req['userCtx']['name'];
    return [doc, 'Edited' + toJSON(doc)];
}


Angular在POST调用中发送数据

{"title":"test","content":"test"}


作为回报,我得到了

Empty{"no_id":true,"title":false,"content":false,"body":"{\"title\":\"test\",\"content\":\"test\"}"}


怎么了?为什么不希望看到接收的对象不在直接a.b中,不在散列a['b']中,甚至不在转义的a['\"b\"']中?我希望那是我的错,不是沙发的错。怎么做对?

最佳答案

您必须先将主体解析为JSON ...

按此处所述使用正文解析器:https://scotch.io/bar-talk/expressjs-4-0-new-features-and-upgrading-from-3-0

09-28 08:37