从Django中的json文件创建固定装置

时间:2019-05-15 18:22:44

标签: django django-fixtures

我无法在Django 2.2中加载我的装置

我的装置文件夹中有一个名为data.json的文件,如下所示:

[{"model": "Headline", "pk": 1, "fields": {"article_link": "https://www.huffingtonpost.com/entry/versace-black-code_us_5861fbefe4b0de3a08f600d5", "headline": "former versace store clerk sues over secret 'black code' for minority shoppers", "is_sarcastic": 0}}, {"model": "Headline", "pk": 2, "fields": {"article_link": "https://www.huffingtonpost.com/entry/roseanne-revival-review_us_5ab3a497e4b054d118e04365", "headline": "the 'roseanne' revival catches up to our thorny political mood, for better and worse", "is_sarcastic": 0}}, {"model": "Headline", "pk": 3, "fields": {"article_link": "https://local.theonion.com/mom-starting-to-fear-son-s-web-series-closest-thing-she-1819576697", "headline": "mom starting to fear son's web series closest thing she will have to grandchild", "is_sarcastic": 1}}]

我有这个模型:

from django.db import models

class Headline(models.Model):
    article_link = models.CharField(max_length=250)
    headline = models.CharField(max_length=500)
    is_sarcastic = models.IntegerField()

我不断收到此错误,不确定是什么错误?

django.core.serializers.base.DeserializationError:

1 个答案:

答案 0 :(得分:2)

您的灯具应如下所示:

[
  {
    "model": "myapp.headline",
    "pk": 1,
    "fields": {
      "article_link": "https://foobar.com",
      "headline": "Test",
      "is_sarcastic": 1
    }
  },
  {
    "model": "myapp.headline",
    "pk": 2,
    "fields": {
      "article_link": "https://foobar.com",
      "headline": "Test",
      "is_sarcastic": 1
    }
  }
]

您可以在这里看看:https://docs.djangoproject.com/en/2.2/howto/initial-data/#providing-data-with-fixtures