黑莓本地存储

时间:2013-04-15 13:41:35

标签: blackberry-webworks

我正在开发一个混合(phonegap和webworks)Blackberry应用程序。我正在使用localstroage来保存变量数据。请告诉我如何查看变量数据以及黑莓应用程序在devie中搜索数据的位置

1 个答案:

答案 0 :(得分:0)

基本演示:

//Insert/Update 
window.localStorage.setItem("foo", "bar");       //foo = bar

//Read
var value = window.localStorage.getItem("foo");  //bar

//Remove
window.localStorage.removeItem("foo");  //foo = undefined

//Remove all
window.localStorage.clear();  //length = 0

以下是我编写的一个示例,演示如何在BlackBerry上使用localStorage API: http://blackberry.github.io/WebWorks-Samples/kitchenSink/html/html5/storage.html

您可以在基于浏览器的网页,PhoneGap应用程序或WebWorks应用程序中重复使用此代码。