1
我有疑問。當混合應用程序處於後臺或關閉狀態時,是否可以保持更改提要仍然存在?混合應用程序暫停時,Pouchdb更改提要
var changes = db.changes({
since: 'now',
live: true,
include_docs: true,
timeout: false
// attachments: true
}).on('change', function (change) {
onChange(change);
// handle change
}).on('complete', function (info) {
// changes() was canceled
}).on('error', function (err) {
console.log(JSON.stringify(err))
});
謝謝nlawson,我會試試看。 – kabus