问题
The default settings in factoryng filter out design documents. How can I include these design documents?
回答1:
You can define this via the properties()
method, e.g.:
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 });
来源:https://stackoverflow.com/questions/26436821/include-design-documents-factoryng