3

我需要提出如下请求:

var url="http://127.0.0.1:8080/simulate/";
    $.ajax({
        url: url,
        type: 'POST',
        data:{  student_num:10,
                company_num:10,
                students:"",
                csrfmiddlewaretoken:'{{csrf_token}}',
                companies:[{weight:10},{weight:11},{weight:9}]
            },
        success: function(data, textStatus, xhr) {
            var text=xhr.responseText
            console.log(text)
        }
    });

但是通过这种方式,request.POST对象并没有组织companies成嵌套的 json 数组。相反,它变成了一个二维数组,如下所示:

<QueryDict: {u'student_num': [u'10'], u'students': [u''], u'companies[2][weight]': [u'9'], u'companies[1][weight]': [u'11'], u'company_num': [u'10'], u'companies[0][weight]': [u'10'], u'csrfmiddlewaretoken': [u'RpLfyEnZaU2o4ExxCVSJkTJ2ws6WoPrs']}>

这样一来,我觉得很难将它们重新组织companies成一个对象列表。我检查了其他一些问题,有人说我们应该这样做:

companies:"[{weight:10},{weight:11},{weight:9}]"

然后使用json.loads将字符串解析回对象列表。但是如果我使用这样的代码,我会不断收到解析错误:

company_array = request.POST['company_array']
company_array = json.loads(company_array)

或这个:

company_array = json.load(StringIO(company_array))

那么处理嵌套 JSON 对象的正确方法应该是什么?

4

3 回答 3

3

您应该在发送数据之前使用 JSON.stringify() 对数据进行字符串化:

$.ajax({
        url: url,
        type: 'POST',
        data: { data: JSON.stringify({  student_num:10,
                company_num:10,
                students:"",
                csrfmiddlewaretoken:'{{csrf_token}}',
                companies:[{weight:10},{weight:11},{weight:9}]
            }) },
        success: function(data, textStatus, xhr) {
            var text=xhr.responseText
            console.log(text)
        }
    });

json.loads()然后你可以在服务器端解析:

 data = json.loads(request.POST.get('data'))
于 2016-01-03T18:01:24.347 回答
0

您可以尝试查看django-SplitJSONWidget-form并从中做出决定。

于 2013-06-24T21:29:49.180 回答
0

您可能会发现这里的答案很有用:Reading multidimensional arrays from a POST request in Django

于 2013-06-19T21:04:16.500 回答