我对cordova有一个问题,我不知道如何处理相对于同一页面打开的不止一次。
假设我有两个基本的html文件,如cordova和jquery移动支持:
的index.html
<!DOCTYPE html>
<html>
<head>
<title>
ciao
</title>
<meta charset="UTF-8">
<!-- cordova -->
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<!-- jquery mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="js/libs/jquery-mobile/jquery.mobile.css" />
<script src="js/libs/jquery/jquery.js"></script>
<script src="js/libs/jquery-mobile/jquery.mobile.js"></script>
<!-- initialization files -->
<script src="js/mainjs.js"></script>
</head>
<body>
<section id="index" data-role="page" data-fullscreen="true">
<div data-role="content">
/*...*/
<a href="mappa.html">
<img src="img/map.png" />
</a>
/*...*/
</div>
</section>
</body>
</html>
mappa.html
<!DOCTYPE html>
<html>
<head>
<title>
mappa
</title>
<meta charset="UTF-8">
<!-- cordova -->
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<!-- jquery mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="js/libs/jquery-mobile/jquery.mobile.css" />
<script src="js/libs/jquery/jquery.js"></script>
<script src="js/libs/jquery-mobile/jquery.mobile.js"></script>
</head>
<body>
<section id="mappa" data-role="page" data-fullscreen="true">
<div data-role="content">
/* code*/
</div>
</section>
</body>
</html>
现在我需要在mappa.html文件中加载数据,所以我使用一个处理程序,我选择加载索引中包含的mainjs.js文件,如下所示。
$(document).ready(function() {
console.log("deviceready");
$(document).on("pageshow","#mappa",function(){ //pageshow is thrown each time
/*code*/
});
});
如果我每次加载页面时都使用上面的代码,则所有处理程序再次启动,并且在数据下载等长时间操作的情况下,用户非常不友好。
所以我尝试了这个处理程序
$(document).one("pageshow","#mappa",function(){ });
但是我第二次进入mappa.html页面时只是空白,因为处理程序没有工作2次。
那么如何保持页面加载?
编辑:在这种特殊情况下,我需要加载地图并使用此代码
$(document).on("pageshow","#mappa",function(){ //pageshow is thrown each time
console.log("dentro script");
//setting div height
$("#map_canvas").height( $(window).height() - $("div[data-role='header']").height() - 32 );
//since page show is thrown each time i use a session storage variable
//so i make the init map only one time
if( !sessionStorage.mapinit ) {
console.log("----------mapinit is not set");
sessionStorage.mapinit=1;
console.log("----------mapinit=1");
// Initialize the map plugin
var mapDiv = document.getElementById("map_canvas");
var map = plugin.google.maps.Map.getMap(mapDiv);
map.setMyLocationEnabled(true);
var pisaCenter = new plugin.google.maps.LatLng(43.723072, 10.396585);
map.setCenter(pisaCenter);
map.setZoom(13);
map.one(plugin.google.maps.event.MAP_READY, onMapInit);
} else {
console.log("----------map already set");
var mapDiv = document.getElementById("map_canvas");
var map = plugin.google.maps.Map.getMap(mapDiv);
}
});
,由于
,它工作正常map.one(plugin.google.maps.event.MAP_READY, onMapInit);
只执行一次onMapInit函数。
但在像这样的情况下
<body>
<script>
$.support.cors=true;
$.mobile.allowCrossDomainPages = true;
$.getJSON('http://.../prestazioni.php?prestazioni=tutto&callback=?',function(data){
$.each(data, function(i, dat){
$("#listview").append('<li>'+dat.rep+'</li>');
});
$('#listview').listview('refresh');
});
</script>
</body>
我每次打开页面都需要下载数据,这是荒谬的
答案 0 :(得分:0)
主要问题与jquery mobile以及它如何加载页面有关。
所以在我的情况下,我使用多个html文件,而jquery不会缓存打开的页面;这个行为可以被覆盖,在像这样的页面上添加data-dom-cache =“true”
<section id="prestazioni" data-role="page" data-fullscreen="true" data-dom-cache="true">
这非常有效。页面仍然加载,但也可以使用处理程序修改它。
还有一条简单的路线,只需创建一个包含多个页面的单个html文件即可。在这种情况下,DOM总是相同的,页面都被缓存。