简体   繁体   English

如何在 Django 中将表单对象列表序列化为 JSON

[英]how to serialize list of form object to JSON in django

I'm trying to serialize the form objects and return to the AJAX call so that I can display them in the template, but I'm not able to serialize them unlike serializing the model objects don't we have an option for form objects我正在尝试序列化表单对象并返回到 AJAX 调用,以便我可以在模板中显示它们,但是我无法序列化它们,不像序列化模型对象我们没有表单对象的选项

if request.method == 'POST':

    temp_data_form = TemplateDataForm(request.POST)

    if request.POST.get('temp_id'):
        # getting id of the current template 
        existing_template = Template.objects.filter(id=request.POST.get('temp_id'))[0]
        if request.POST.get('item'):
            item_query = existing_template.tempdata_set.filter(item=request.POST.get('item'))
            if item_query:
                item_query = item_query[0] and True

        # we only edit the existing object of the template always as we create the object by default on GET request
        if existing_template and existing_template.title != request.POST.get('title') and request.POST.get('title')!= None:
            existing_template.title = request.POST.get('title')
            existing_template.save()
        if temp_data_form.is_valid() and item_query != True:

        # Template items alias data
        td_obj = temp_data_form.save(commit=False)
        td_obj.template = existing_template
        td_obj.save()

        values_form = []

        for item in existing_template.tempdata_set.all():
            values_form.append(TemplateDataForm(instance=item))

        return JsonResponse(values_form, safe=False)

I'm getting the below error.我收到以下错误。

     raise TypeError(f'Object of type {o.__class__.__name__} '
TypeError: Object of type TemplateDataForm is not JSON serializable

Assuming your TemplateDataForm is a Django form, it should have a "cleaned_data" attribute.假设您的 TemplateDataForm 是一个 Django 表单,它应该有一个“cleaned_data”属性。 You need to serialize that data and not the form itself.您需要序列化该数据而不是表单本身。 So for a single form, that would look like the below.所以对于单个表单,它看起来像下面这样。 Also, cleaned_data is a dictionary, so you can drop the "safe=False" argument.此外,cleaned_data 是一个字典,因此您可以删除“safe=False”参数。

return JsonResponse(values_form.cleaned_data, safe=False)

However, based on your code, it looks like you are trying to loop through a child object set or multiple forms.但是,根据您的代码,您似乎正在尝试遍历子对象集或多个表单。 So, for that, you would probably want to pre-build the json dictionary response in the loop.因此,为此,您可能希望在循环中预先构建 json 字典响应。

json_response_dict = {}
for item in existing_template.tempdata_set.all():
        values_form.append(TemplateDataForm(instance=item))
        # Add to your response dictionary here.  Assuming you are using
        # django forms and each one is a valid form.  Your key will
        # need to be unique for each loop, so replace 'key' with a
        # loop counter such as 'form' + counter or maybe a form instance
        # cleaned_data pk.  If looping through child set objects, then
        # reference the appropriate attribute such as values_form.title.
        json_response_dict['key'] = values_form.cleaned_data

    return JsonResponse(json_response_dict, safe=False)

Then in javascript, for your response, you would need to access each key.然后在 javascript 中,为了您的响应,您需要访问每个键。

$.ajax({
        method: 'POST',
        url: yourURL,
        data: yourData
    }).always(function (response) {
        /* Test viewing the title for a single object in dictionary.  Otherwise, loop
         * through the response in each dictionary subset to get the keys/values.
         */
        alert(response.title);
    });

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM