我正在尝试将openDatabase
与Google Chrome应用一起使用,但会显示以下错误:
未捕获的ReferenceError:未定义openDatabase
我还在manifest.json中添加了权限(unlimitedStorage
)。
答案 0 :(得分:4)
Chrome应用已禁用WebSQL,您可以在documentation。
中看到如果您想要持久保存数据,请使用chrome.storage
API,IndexedDB
或chrome.fileSystem
API(不要与HTML5 Filesystem API混淆!)。
答案 1 :(得分:0)
dexie js 在 Chrome 应用程序中完美运行