2012-05-21 71 views
1

我有一個應用程序,在我的應用程序中有兩個webviews,我標記爲webview_One和webview_Two。一個應用程序兩個webview但只有一個localStorage

webview_One access "http://localhost:12345:/a/index.html" 
webview_Two access "http://localhost:12345:/b/index.html" 
在/ index.html中

和b/index.html中我用localStorage的操作一個變量都是localStorage.test 但是,當我在一個/ index.html中改變localStorage.test,在B/index.html我得到了在/ index.html中更改的值

爲什麼每個webview都不能存儲localStorage?

我想知道如何讓每個webview存儲每個webview itselfe localStorage值?

回答

0

WebKit的只使用本地存儲一個數據庫 - 看看在WebSettings

sessionStorage的,另一方面可能會做你想要的文件,但WHN你

的頁面導航離去你會丟失數據
+0

我無法使用sessionStorage。 – passerby

+0

爲什麼你不能使用會話存儲?你是否爲Web視圖啓用了它? – gheese

相關問題