我想检查我的用户是否使用javascript从其他系统更新。
我需要帮助编写一个检查json响应的函数。如果是真或假。
网址/user/updatecheck/
有一个像这样的json响应:{"updated": "true"}
或{"updated": "false"}
<script type="text/javascript">
$(document).ready(function() {
var updated='2013-01-02T10:30:00.000123+02:00'; //user variable from the system, will be empty if the user is not updated
if (!updated){
$('#not-updated').modal('show');
var updatedCheck = window.setInterval(
$.ajax({
url: "/user/updatecheck/", //Returns {"updated": "true"} or {"updated": "false"}
data: dataString,
dataType: "json",
success: function(data){
if (json.updated == 'true') { //not sure if this is the correct method
window.clearInterval(updatedCheck);
//The user is updated - the page needs a reload
}
} //success
})
, 3000); //Hoping this is the function to check the url every 3 seconds until it returns true
}
});
$(document).ajaxStop(function(){
window.location.reload();
});
</script>
它似乎不起作用。不确定我的ajax函数是否正确,如果用户最初没有更新,我只获得模态窗口,如果url /user/updatecheck/
返回true,则页面不会重新加载。
答案 0 :(得分:0)
将jQuery ajax函数作为setInterval的一部分调用的方式是不正确的。请尝试将其放在一个函数中,
var updatedCheck = window.setInterval(
function(){$.ajax({
url: "/user/updatecheck/", //Returns {"updated": "true"} or {"updated": "false"}
data: dataString,
dataType: "json",
success: function(data){
if (json.updated == 'true') { //not sure if this is the correct method
window.clearInterval(updatedCheck);
//The user is updated - the page needs a reload
}
} //success
})}
, 3000);
您将从ajax请求接收的数据通过成功回调函数的data参数返回,因此您可以使用它。尝试将数据结果打印到控制台(即console.log(data);
)或提醒它(即alert(data);
)。例如,您可能需要调用data.updated。我不确定你在if条件中使用的json变量是否已初始化。