2013-04-15 52 views
1

我正在開發一個混合(phonegap和webworks)黑莓應用程序。我正在使用localstroage來保存可變數據。請告訴我如何查看可變數據以及黑莓應用程序在哪裏發現數據在devie中Blackberry localstorage

回答

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 

這裏是我寫的,顯示瞭如何使用黑莓的localStorage的API的例子: http://blackberry.github.io/WebWorks-Samples/kitchenSink/html/html5/storage.html

在任何一個基於瀏覽器的網絡可以重新使用此代碼頁面,PhoneGap應用程序或WebWorks應用程序。