1

我正在开发一个混合(phonegap 和 webworks)Blackberry 应用程序。我正在使用 localstroage 来保存可变数据。请告诉我我们如何查看可变数据以及黑莓应用程序在设备中的何处存储该数据

4

1 回答 1

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 应用程序中重复使用此代码。

于 2013-04-16T13:28:21.767 回答