我正在开发移动应用程序,因为我使用带有Phonegap的
html5 / js.
我使用window.open
Database(…)将一些数据存储在本地数据库中.
这对Android 2.x工作正常但是当我尝试使用Android 4.0.3时,我发现以下错误:
D / CordovaLog(698):未捕获TypeError:对象[对象DOMWindow]没有方法’openDatabase’
我的代码是:
if (!window.openDatabase)
alert("Error: can't open local database");
if (!localStorage)
alert("Error: localstorage not usable");
var db = window.openDatabase("Database", "1.0", "DatabaseName", 200000);
你知道它来自哪里以及我如何解决它?提前致谢.
亲切的问候,
六.
最佳答案 根据
http://androidforums.com/application-development/103644-why-doesnt-work-javascript-opendatabase-android.html,Android从一开始就支持window.OpenDatabase()方法.您可能希望看到此StackOverflow线程:
Android 4.0.1 breaks WebView HTML 5 local storage?