Django: Create and save a model using JSON data

2020-02-26 09:16发布

Im building an app using Django 1.10 as backend and Angular 2 4.0 for frontend.

Is it possible to create and save a model instance from a JSON data object?

Example: This model:

class PartOne(models.Model):
  gender = models.SmallIntegerField(choices=[(1, "Male"), (2, "Female")])
  gender_na = models.BooleanField(default=False)
  height = models.SmallIntegerField()
  height_na = models.BooleanField(default=False)

JSON:

json = {
'gender': 1,
'gender_na':False,
'height':195,
'height_na':False
}

I dont want to manually create the model:

PartOne.objects.create(gender=json['gender'], gender_na=json['gender_na'], height=json['height'], height_na=json['height_na]

Im looking for an automated solution, like this:

PartOne.objects.create_from_json(json)

2条回答
够拽才男人
2楼-- · 2020-02-26 09:50

You may also want to take a look at modelform_factory if you want to run more validation on your data or have more control over input. You can also do good stuff like attaching files.

from django.forms.models import modelform_factory

form = modelform_factory(PartOne, fields=('gender', 'gender_na', 'height', 'height_na',))
populated_form = form(data=my_json)

if populated_form.is_valid():
    populated_form.save()
else:
    # do something, maybe with populated_form.errors
查看更多
爷的心禁止访问
3楼-- · 2020-02-26 10:11

You could just do,

PartOne.objects.create(**json)

You can use the **kwargs syntax when calling functions by constructing a dictionary of keyword arguments and passing it to your function.

This is documented on section 4.7.4 of python tutorial., under unpacking argument lists.

Also, note that the same dict is not passed into the function. A new copy is created, so "json" is not kwargs.

查看更多
登录 后发表回答