IS IBM MobileFirst Platform 7.0.0.00 支持 indexedDB
IS IBM MobileFirst Platform 7.0.0.00 supports indexedDB
我正在尝试在我的手机中实现 indexedDB app.here 我正在提供我的代码
function readAll() {
var objectStore = db.transaction("customers").objectStore("customers");
objectStore.openCursor().onsuccess = function(event) {
var cursor = event.target.result;
if (cursor) {
alert("Name for id " + cursor.key + " is " + cursor.value.name + ", Age: " + cursor.value.age + ", Email: " + cursor.value.email);
cursor.continue();
}
else {
alert("No more entries!");
}
};
}
在这个cursor.continue();在我的 js 中显示红线 file.I 不知道为什么
请任何人 help.I 从
那里得到这个代码
http://www.onlywebpro.com/2012/12/23/html5-storage-indexeddb/
谢谢
MobileFirst 不提供 IndexedDB 支持,因为这不是它可以提供的功能。
MobileFirst 在其基础上使用 Cordova。如果 Cordova 支持 IndexedDB,您的应用程序将能够使用它。
根据the Cordova documentation,IndexedDB 支持:
- 黑莓 10
- Firefox OS
- Windows Phone 8
- Windows 8
请看下面link cordova 支持
https://cordova.apache.org/docs/en/5.1.1/guide/support/index.html
我正在尝试在我的手机中实现 indexedDB app.here 我正在提供我的代码
function readAll() {
var objectStore = db.transaction("customers").objectStore("customers");
objectStore.openCursor().onsuccess = function(event) {
var cursor = event.target.result;
if (cursor) {
alert("Name for id " + cursor.key + " is " + cursor.value.name + ", Age: " + cursor.value.age + ", Email: " + cursor.value.email);
cursor.continue();
}
else {
alert("No more entries!");
}
};
}
在这个cursor.continue();在我的 js 中显示红线 file.I 不知道为什么
请任何人 help.I 从
那里得到这个代码http://www.onlywebpro.com/2012/12/23/html5-storage-indexeddb/
谢谢
MobileFirst 不提供 IndexedDB 支持,因为这不是它可以提供的功能。
MobileFirst 在其基础上使用 Cordova。如果 Cordova 支持 IndexedDB,您的应用程序将能够使用它。
根据the Cordova documentation,IndexedDB 支持:
- 黑莓 10
- Firefox OS
- Windows Phone 8
- Windows 8
请看下面link cordova 支持
https://cordova.apache.org/docs/en/5.1.1/guide/support/index.html