Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
factoryngのデフォルト設定では、設計ドキュメントが除外されます。これらの設計ドキュメントを含めるにはどうすればよいですか?
properties()メソッドを介してこれを定義できます。たとえば、次のようになります。
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 });