码迷,mamicode.com
首页 > 编程语言 > 详细

Django接受ajax传过来的数组

时间:2017-04-13 17:46:09      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:tin   sync   pre   end   data   blog   logs   cache   res   

        $.ajax({
            cache: false,
            type: "POST",
            url: "/userdelete/",
            traditional:true,  //加上此项可以传数组
            dataType:‘json‘,
            async: true,
            data:{ids:ids},
            success: function(data) {
                if (data.status == ‘success‘) {
                    $table.bootstrapTable(‘remove‘, {field: ‘id‘, values: ids});
                }

            },
            beforeSend: function(xhr, settings) {
                xhr.setRequestHeader("X-CSRFToken", csrftoken);
            }
        });




    if request.is_ajax():
        if request.method == ‘POST‘:

            array = request.POST.getlist(‘ids‘)  #django接收数组


            for i in array:
               p = UserProfile.objects.get(id=i)
               p.delete()


        return HttpResponse(‘{"status":"success"}‘, content_type=‘application/json‘)

 

Django接受ajax传过来的数组

标签:tin   sync   pre   end   data   blog   logs   cache   res   

原文地址:http://www.cnblogs.com/zhaoyingjie/p/6705051.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!