如何在 Cloudant 结果 json 中限制 _rev_info

How to restrict _rev_info in cloudant result json

我正在为我的项目使用 cloudant。每次我更新文档并获取文档时,结果 JSON 都会带有 { _rev_info : [...] } (包含 500+ 修订历史记录)。在 cloudant 中,我如何在没有 _rev_info 的情况下限制和获取数据??

{ name: "test",
  "age":22,
  _revs_info: [
          { rev: '510-454.....',
            status: 'available' }, 
            {....}
 ]
}

_revs_info 只有在您通过在查询字符串中传递 revs_info=true 明确请求时才会返回。如果您不需要修订历史记录,只需排除该参数即可。