Django-easy-pjax not working really

淺唱寂寞╮ 提交于 2019-12-04 19:24:34

Make sure you have django.core.context_processors.request added to TEMPLATE_CONTEXT_PROCESSORS and pjax templates to answer for PJAX request, in your case pjax_ubase.html. Take a look at the source code of the template tag: https://github.com/nigma/django-easy-pjax/blob/master/easy_pjax/templatetags/pjax_tags.py

Im sure you don't need this anymore. but you should have added this :D. This is not mentioned anywhere in the documentation

<script>
$(document).ready(function ($) {
    console.log("Hello im here ");
    "use strict";
    $(document).pjax("a", "#pjax-container", {timeout: 10000});

    $(document).on("pjax:beforeSend", function(e) {
    console.log("im before sending ");
             return true;

    });

    $(document).on("pjax:send", function(e) {
        $("#loading").removeClass("hidden")
    });

    $(document).on("pjax:complete", function() {
        $("#loading").addClass("hidden")
    });

});
</script>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!