我需要提出如下请求:
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 对象的正确方法应该是什么?