【问题标题】:Turn list of JSON objects into Django model isntances将 JSON 对象列表转换为 Django 模型实例
【发布时间】:2016-08-28 04:38:39
【问题描述】:

我在一个 json 文件中有大量 JSON 对象。有些对象的键比其他对象多,但它们都是我拥有的模型类中的字段的键。我想知道,迭代每个 JSON 对象以使用来自该对象的数据创建模型实例,为对象不包含的任何字段创建空值的最佳方法是什么?

minerals.json (sn-p)

[
    {
        "name": "Abelsonite",
        "image filename": "240px-Abelsonite_-_Green_River_Formation%2C_Uintah_County%2C_Utah%2C_USA.jpg",
        "image caption": "Abelsonite from the Green River Formation, Uintah County, Utah, US",
        "category": "Organic",
        "formula": "C<sub>31</sub>H<sub>32</sub>N<sub>4</sub>Ni",
        "strunz classification": "10.CA.20",
        "crystal system": "Triclinic",
        "unit cell": "a = 8.508 Å, b = 11.185 Åc=7.299 Å, α = 90.85°β = 114.1°, γ = 79.99°Z = 1",
        "color": "Pink-purple, dark greyish purple, pale purplish red, reddish brown",
        "crystal symmetry": "Space group: P1 or P1Point group: 1 or 1",
        "cleavage": "Probable on {111}",
        "mohs scale hardness": "2–3",
        "luster": "Adamantine, sub-metallic",
        "streak": "Pink",
        "diaphaneity": "Semitransparent",
        "optical properties": "Biaxial",
        "group": "Organic Minerals"
    },
    {
        "name": "Abernathyite",
        "image filename": "240px-Abernathyite%2C_Heinrichite-497484.jpg",
        "image caption": "Pale yellow abernathyite crystals and green heinrichite crystals",
        "category": "Arsenate",
        "formula": "K(UO<sub>2</sub>)(AsO<sub>4</sub>)·<sub>3</sub>H<sub>2</sub>O",
        "strunz classification": "08.EB.15",
        "crystal system": "Tetragonal",
        "unit cell": "a = 7.176Å, c = 18.126ÅZ = 4",
        "color": "Yellow",
        "crystal symmetry": "H-M group: 4/m 2/m 2/mSpace group: P4/ncc",
        "cleavage": "Perfect on {001}",
        "mohs scale hardness": "2.5–3",
        "luster": "Sub-Vitreous, resinous, waxy, greasy",
        "streak": "Pale yellow",
        "diaphaneity": "Transparent",
        "optical properties": "Uniaxial (-)",
        "refractive index": "nω = 1.597 – 1.608nε = 1.570",
        "group": "Arsenates"
    },
    {
        "name": "Abhurite",
        "image filename": "240px-Abhurite_-_Shipwreck_Hydra%2C_South_coast_of_Norway.jpg",
        "image caption": "Brownish tabular crystals of abhurite from Shipwreck \"Hydra\", South coast of Norway",
        "category": "Halide",
        "formula": "Sn<sub>21</sub>O<sub>6</sub>(OH)<sub>14</sub>Cl<sub>16</sub>",
        "strunz classification": "03.DA.30",
        "crystal symmetry": "Trigonal",
        "group": "Halides"
    },
]

models.py

from django.db import models

class Mineral(models.Model):
    name = models.CharField(max_length=300, null=True, blank=True)
    category = models.CharField(max_length=300, null=True, blank=True)
    formula = models.CharField(max_length=300, null=True, blank=True)
    crystal_system = models.CharField(max_length=300, null=True, blank=True)
    unit_cell = models.CharField(max_length=300, null=True, blank=True)
    color = models.CharField(max_length=300, null=True, blank=True)
    cleavage = models.CharField(max_length=300, null=True, blank=True)
    crystal_symmetry = models.CharField(max_length=300, null=True, blank=True)
    mohs_scale = models.CharField(max_length=300, null=True, blank=True)
    image_caption = models.CharField(max_length=300, null=True, blank=True)
    image_filename = models.CharField(max_length=300, null=True, blank=True)
    strunz_classification = models.CharField(max_length=300, null=True, blank=True)

    def __str__(self):
        return self.name

【问题讨论】:

    标签: python json django model


    【解决方案1】:

    hasattrsetattr 对于解决您的问题非常有用。 (docs)

    def convert(jsonObject, model):
        modelObject = model()
        for key in jsonObject:
            if hasattr(modelObject, key):
                setattr(modelObject, key, jsonObject[key])
    
        return modelObject
    
    converted = list()
    for item in jsonArray:
        mineral = convert(item, Mineral)
        mineral.save()
        converted.append(mineral)
    

    【讨论】:

      猜你喜欢
      • 2018-11-21
      • 2012-07-14
      • 1970-01-01
      • 2015-04-29
      • 2022-10-22
      • 1970-01-01
      • 2012-07-29
      • 2016-02-20
      • 1970-01-01
      相关资源
      最近更新 更多