我正在使用 jQuery Mobile 1.3.1 和 Ajax 构建一个照片库页面,以从我的 PHP 服务器中以 JSON 格式检索照片。当我第一次导航到页面时,#album_loader div 显示在 #album_message div 中没有任何内容(是的,填充了本地存储变量)。根据我的代码,#album_mesage div 中应该有内容,而#album_loader div 应该只在发送 Ajax 请求时显示。我知道 jQM 有一些棘手的方法可以在每次查看页面时呈现内容,但同样的方法适用于我的其他页面。有任何想法吗?下面是我的代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Wedding</title>
<link href="css/jquery-mobile.css" rel="stylesheet" />
<link href="css/application.css" rel="stylesheet" />
<script src="js/jquery.js"></script>
<script src="js/global.js"></script>
<script src="js/jquery-mobile.js"></script>
<script src="phonegap.js"></script>
<script src="js/connection.js"></script>
</head>
<body>
<div data-role="page" id="album">
<div id="header" data-role="header"><p align="center">Wedding</p></div>
<div id="content" data-role="content">
<div id="album_message" class="message" style="margin-bottom:20px;"></div>
<div id="album_loader" class="message"><p align="center"><strong>Please Wait, Loading Album Data...</strong><br /><img src="images/loading.gif" /></p></div>
<div id="album_photos"></div>
</div>
<div id="footer" data-role="footer" data-position="fixed">
<nav data-role="navbar">
<ul>
<li><a href="index.html" data-icon="home">Home</a></li>
<li><a href="instructions.html" data-icon="info">Instructions</a></li>
</ul>
</nav>
</div>
</div>
<script scr="js/fancybox.js"></script>
<script>
$(document).on('pagebeforeshow', '#album', function() {
$('#album_loader').hide();
var album_id = localStorage.getItem('album_id');
var album_title = localStorage.getItem('album_title');
var album_bride = localStorage.getItem('album_bride');
var album_groom = localStorage.getItem('album_groom');
var album_user = localStorage.getItem('album_user');
$('#album_message').html('<p align="center"><strong>Album:</strong> ' + album_title + ' <br /><strong>By:</strong> ' + album_bride + ' & ' + album_groom + '</p>');
$.ajax({
url: server_url + "get-photos",
type: "post",
data: 'album_id=' + album_id,
dataType: 'json',
crossDomain: true,
beforeSend : function (){
$('#album_loader').show();
},
error: function() {
$("#album_loader").hide();
$('#album_message').removeClass("message").html('<p align="center">Server communication error while trying to retrieve album photos.</p>').addClass("errorm");
},
success: function(data) {
$("#album_loader").hide();
if (data.response === "true") {
$("#album_photos").append('<div id="grid" class="ui-grid-b"></div>');
var photos = data.photos.length;
$.each(data.photos, function(i, object) {
$("#grid").append('<div class="ui-block-b"><img src="' + photo_url + album_user + '/thumbnail/' + object.photo_thumbnail + '" class="img-border" /></div>');
});
} else {
$('#album_message').removeClass("message").html('<p align="center">Error retrieving photos.</p>').addClass("errorm");
}
}
});
});
</script>
</body>
</html>
此外,刷新图像后,图像最终显示,当我离开页面然后返回它时,图像显示两次。这是为什么?是因为我要附加到 div 吗?我将如何解决这个问题?