我的数据库中有一些数据。我使用 PHP 和 MySQL 选择数据并将其放入 JSON。我将另一个站点上的 JSON 加载到我的列表视图中。有用。但我想要的是当 JSON 数据发生变化时,我的列表视图应该自动重新加载。
jQuery代码
$(document).ready(function(){
var url="url";
$.getJSON(url,function(json){
$.each(json.post,function(i,post){
$("ul:jqmData(role='listview')").append("<li>"+post.naam+"</li>").listview('refresh');
});
});
});
我希望有一个人可以帮助我。
谢谢。