我在PouchDB中使用cordova-sqlite适配器时遇到问题。它可以在本地完美运行(我可以创建,更新和删除文档),但不能与任何远程CouchDB服务器同步。我同时尝试了IBM Cloudant和自己的CouchDB服务器。
如果我改用IDB适配器,它就像一个咒语,但是当我更改为SQLite时,它不能正确同步。
这是我的用法(在我的Vue应用程序中):
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import PouchDB from 'pouchdb'
...
Object.defineProperty(Vue.prototype, '$pouch', { value: PouchDB }); //this is to be able to use $pouch in any Vue component later on
...
var PouchAdapterCordovaSqlite = require('pouchdb-adapter-cordova-sqlite');
PouchAdapterCordovaSqlite.use_prefix = true; // use the legacy '_pouch' prefix. I tried both with and without this option
PouchDB.plugin(PouchAdapterCordovaSqlite);
...
this.db = new this.$pouch('todos', { adapter: 'cordova-sqlite', location: 'default', androidDatabaseImplementation: 2 });
console.log('PouchDB adapter: ' + this.db.adapter); //it returns 'cordova-sqlite'
let remoteCouch='http://myserveraddress.com:5984/todos'; //todos is the remote database, with CORS enabled and set as public so no user/pass is needed
this.$pouch.sync('todos', remoteCouch, {
live: true,
retry: true
}).on('change', function (info) { console.log('change:' + info}).on('paused', function (err) {//...//}).on --- and so on with 'active', 'denied', 'complete' and 'error'
,然后在一个Vue组件中,我使用它(其中 this.db 引用数据库,而 this.todos 用于在屏幕上显示结果:
mounted() {
this.list();
this.db
.changes({
since: "now",
live: true
})
.on("change", this.list);
},
methods: {
list: function() {
let self = this;
this.db.allDocs({ include_docs: true, descending: true }, function(
err,
doc
) {
self.todos = doc.rows;
});
}
}
正如我之前提到的,它可与IndexedDB一起使用,但不适用于SQLite适配器(我同时使用cordova-sqlite-storage和cordova-plugin-sqlite-2都具有相同的结果)。一切都在deviceready事件发生后开始,并且sqlite已正确加载(我可以使用window.sqlitePlugin)。
当涉及到Cordova config.xml时,我确保定义了这一点:
<plugin name="cordova-plugin-whitelist"/>
<access origin="*"/>
<allow-intent href="http://*/*"/>
<allow-intent href="https://*/*"/>
...
<plugin name="cordova-plugin-sqlite-2" spec="*"/>
有任何线索吗?我真的需要使用SQLite而不是IDB,因为我的应用程序将存储大量数据,并且我还需要一种 offline-first 方法,这就是为什么要使用PouchDB的原因。
我尝试的另一项测试是从我的应用程序手动创建SQLite数据库,该方法也有效,因此看来问题与 pouchdb-adapter-cordova-sqlite 有关。
具有IDB的屏幕截图: result with idb
以及SQLite的屏幕截图: result with sqlite
谢谢!
答案 0 :(得分:0)
解决了!
问题出在这里
this.$pouch.sync('todos', remoteCouch, {...
它必须更改为:
this.db.sync(remoteCouch, {...
因此它指向的是pouchdb对象而不是数据库实例。 希望对您有所帮助。 问候!