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)
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.You could just do,
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.