我试图通过 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