包括设计文件factoryng

时间:2014-10-18 06:09:58

标签: javascript angularjs couchdb pouchdb design-documents

factoryng中的默认设置会过滤掉设计文档。我如何包含这些设计文件?

1 个答案:

答案 0 :(得分:1)

您可以通过properties()方法定义,例如:

var tasks = new Pouchyng('tasks', 'http://localhost:5984', yngutils.ASC);
var config = {
  opts: {
    filter: function (doc) {
      return true;
    }
  }
}; 
tasks.properties({ changes: config, to: config, from: config });