我正在开发一个带有 phonegap 和 jquery mobile for android 的移动应用程序。它工作正常,但从服务器获取数据需要很长时间。
我想缓存它的页面,所以如果用户回到同一页面,他可以查看同一页面。我正在使用 jquery 移动缓存代码,但它不起作用。
我正在将此代码data-dom-cache="true"
用于缓存
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.appView.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);
super.loadUrl("file:///android_asset/www/find.html");
}