If I send a json string to my update handler as part of req.body what is the
best way to convert it to a JSON object?

Do the CouchDb js libraries already include a built in JSON parser or do I
have to use eval?

"active_test" : function(doc, req) {
      var active_test = eval('(' + req.body + ')');

      doc['active_test'] = active_test;
      return [doc, req.body];
     }

Reply via email to