我正在尝试在pjax请求后重新加载alerts
容器。
我的目标是在任何pjax请求完成后重新加载容器的代码,所以我不必每次都单独调用它。
我有以下代码:
$(document).on('pjax:complete', function(event) {
$.pjax.reload({container:"#alerts"});
});
然而,这会将整个页面发送到一个永无止境的循环。
有没有办法使这项工作或我不应该使用pjax来解决这个特殊问题?
非常感谢。
更新 以下代码有效,但我觉得它不是完美的解决方案:
var time = Date.now();
$(document).on(\'pjax:complete\' , function(event) {
if(time <= Date.now()){ //Check if there has been a recent reload
time = Date.now() + 1000;
console.log(time);
App.restartGlobalFunction();
$.pjax.reload({container:"#alerts", async:false});
}
});
答案 0 :(得分:3)
在Pjax Widget的特定id上尝试pjax: -
$this->registerJs('
jQuery(document).on("pjax:success", "#brand-form", function(event){
$.pjax.reload({container:"#alerts",timeout:2e3})
}
);
');