将注释添加到couchdb设计文档

时间:2015-09-11 16:28:10

标签: couchdb couchdb-futon

有没有办法在couchdb设计文档中输入注释?

查询可能会变得非常神秘,能够写出他们所做的简短的人工描述真的很棒。

1 个答案:

答案 0 :(得分:2)

如果你想为你的JS代码添加注释,那很好。

function (doc) {
  // comments are ok here
  if (doc.type === 'user') emit(doc.username);
}

但是,您无法向外部JSON添加注释,因为JSON不支持注释。

{
  "views": {
    "by-name": {
      // you can't put comments here
      "map": "function (doc) { ..."
    }
  }
}