gpt4 book ai didi

angularjs - PouchDB + Ionic 使用 WebSQL 而不是 SQLite

转载 作者:行者123 更新时间:2023-12-02 21:33:05 28 4
gpt4 key购买 nike

我像这样安装了 SQLite:

cordova plugin add cordova-sqlite-storage --save

当我构建应用程序时,我在 IOS 的插件文件夹中看到它。

我下载了 SQLite.js 并将其添加到我的 html 中,位于 ng-cordova 之后、我的应用程序 javascript 之前,如下所示:

<script src="js/SQLitePlugin.js"></script>
<script src="js/pouchdb-6.0.4.js"></script>

但是当我进行数据库调用时,我会在控制台中看到以下内容:

db.info().then(function (result) { console.log(JSON.stringify(result); });

注意它说:"adapter":"websql"

{"doc_count":1,"update_seq":2,"websql_encoding":"UTF-8","db_name":"DBNAME","auto_compaction":true,"adapter":"websql"}

有人知道我还需要做什么吗?有点困惑为什么它不使用 SQLite。

最佳答案

添加:

PouchDB.plugin(cordovaSqlitePlugin);

在创建/打开数据库之前。

告诉它使用 sqlite 适配器(例如)

this.userdb = new PouchDB('system-user.db', { adapter: 'cordova-sqlite' });

关于angularjs - PouchDB + Ionic 使用 WebSQL 而不是 SQLite,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39576730/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com