サーバー上でページが変更された場合、毎秒 ajax がページの独自の URL を要求し、それtextStatus
がnotmodified
.
setTimeout(function(){
$.ajax({
url : window.location.pathname,
dataType : "text",
ifModified : true,
success : function(data, textStatus) {
if (textStatus !== "notmodified") {
location.reload();
}
}
});
}, 1000);
ただし、textStatus
常にsuccess