factoryng中的默认设置会过滤掉设计文档。我如何包含这些设计文件?
答案 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 });