从couchdb中的json body获取数据

时间:2014-07-30 09:30:17

标签: json couchdb

我有以下身体。

{

  "sEcho: : 2, 

  creteria : ['everything' | 'roomcode' | 'roomfunction'], 

  textBox : "key1, key2, key3,..",

  dt : '03/04/2014',

  "iDisplayStart" : '0'

  iDisplayLength : [10| 25| 50|100]  

  iSortCol_0 : ''last_modified' ,

  "sSortDir_0":"asc"

}

如何使用request将这些值放入我的列表中(不应该通过url作为查询参数)。有可能吗?

var sEcho=req.form.sEcho;

1 个答案:

答案 0 :(得分:0)

所以代码就像,

var active_text = JSON.parse(req.body);

var field = active_text.sEcho;