进度条取决于django中后端的进度

时间:2015-05-29 12:09:12

标签: django django-templates

我正在使用django模板,我有一个按钮,当用户点击这个在后端执行的一些操作时。在那段时间里,我想展示一个进度条。这是我按钮的代码。

  $("#bulk_shortlist").click(function(){
        data=$('#limit option:selected').val()
        $.ajax({
            url: "{{ settings.SITE_ADDR }}/hire/bulk_shortlisting/",
            type: 'POST',
            data: {
                'limit': data,
                'id': {{ job_id }},
                'functional_area': options["functional_areas"],
                'min_exp':options["min_exp"],
                'max_exp':options["max_exp"],
                'min_sal':options["min_salary"],
                'max_sal':options["max_salary"],
                'age_cond':options["age_cond"],
                'gender':options["gender"],
                'industries':options["industries"],
                'languages':options["languages"],
                'adskills':options["adskills"],
                'location':options["location"],
                'education':options["education"]
            },
            success: function(response1) {
                alert(response1);
            },
            failure: function(response1) {
                alert('Got an error ..... Pleas try again later ');
            }

        });
    });
</script> 

我是django的新手,请帮帮我。提前谢谢。

0 个答案:

没有答案