我正在尝试使用openDatabase
Google Chrome 应用程序,但显示以下错误:
未捕获的 ReferenceError:未定义 openDatabase
unlimitedStorage
我还在manifest.json 中添加了权限 ( )。
我正在尝试使用openDatabase
Google Chrome 应用程序,但显示以下错误:
未捕获的 ReferenceError:未定义 openDatabase
unlimitedStorage
我还在manifest.json 中添加了权限 ( )。
如您在文档中所见,Chrome 应用程序禁用了 WebSQL 。
如果您想永久保存数据,请使用chrome.storage
APIIndexedDB
或chrome.fileSystem
API(不要与HTML5 文件系统 API混淆!)。
dexie js 在 chrome 应用程序中表现出色