我想檢查用戶是否使用javascript從另一個系統更新。運行ajax函數,每3秒檢查一次json響應
我需要編寫一個函數來檢查json響應。如果是真或假。
的URL /user/updatecheck/
有這樣的JSON響應:{"updated": "true"}
或{"updated": "false"}
<script type="text/javascript">
$(document).ready(function() {
var updated='2013-01-02T10:30:00.00: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返回true,頁面不會重新加載。
檢查半秒可能是矯枉過正。 – Brandon
也許你應該使用保持活着的請求。 –
@EdsonMedina:我如何使用任何提示保持活着? –