OperationalError:(1054,“字段列表'中的未知列'snippets_snippet.owner_id'”)

时间:2015-03-06 04:32:37

标签: python django django-rest-framework

这是model.py

    from django.db import models
from django.contrib.auth.models import User
from pygments.lexers import get_all_lexers, get_lexer_by_name
from pygments.styles import get_all_styles
from pygments.formatters.html import HtmlFormatter
from pygments import highlight

LEXERS = [item for item in get_all_lexers() if item[1]]
LANGUAGE_CHOICES = sorted([(item[1][0], item[0]) for item in LEXERS])
STYLE_CHOICES = sorted((item, item) for item in get_all_styles())


class Snippet(models.Model):
    created     = models.DateTimeField(auto_now_add=True)
    title       = models.CharField(max_length=100, blank=True, default='')
    code        = models.TextField()
    linenos     = models.BooleanField(default=False)
    language    = models.CharField(choices=LANGUAGE_CHOICES, default='python', max_length=100)
    style       = models.CharField(choices=STYLE_CHOICES, default='friendly', max_length=100)
    owner       = models.ForeignKey('auth.User', related_name='snippets')
    highlighted = models.TextField()

    def save(self, *args, **kwargs):
        lexer               = get_lexer_by_name(self.language)
        linenos             = self.linenos and 'table' or False
        options             = self.title and {'title': self.title} or {}
        formatter           = HtmlFormatter(style=self.style, linenos=linenos, full=True, **options)
        self.highlighted    = highlight(self.code, lexer, formatter)
        super(Snippet, self).save(*args, **kwargs)

    class Meta:
        ordering = ('created',)

这是serializers.py

 class SnippetSerializer(serializers.ModelSerializer):
    class Meta:
        model = Snippet
        owner = serializers.ReadOnlyField(source='owner.username')
        fields = ('id', 'title', 'code', 'linenos', 'language', 'style')

class UserSerializer(serializers.ModelSerializer):
    snippets    = serializers.PrimaryKeyRelatedField(many=True, queryset=Snippet.objects.all())

    class Meta:
        model   = User
        fields  = ('id','username','snippets')

每当我通过API访问客户端时,都会收到以下错误:

  

(1054,“字段列表中的未知列'snippets_snippet.owner_id'”)

我已经再次删除了数据库和syscdb,但同样的错误。

你能帮忙解决这个问题吗?

2 个答案:

答案 0 :(得分:1)

我知道这已经过时了,但我正在浏览相同的教程(Django Rest Framework Tutorial #4)并遇到了同样的问题。我认为我会在问题上发布解决方案,以防其他人遇到此问题。

此错误告诉您,代码段表中不存在所有者外键列。可能这意味着python manage.py migrate步骤无法在片段表上按预期创建列。

问题在于,在教程中,他们希望在输入内容后添加表格列。执行此操作将导致django在执行迁移时发出警告。因此,他们不会这样做,而是让您在片段应用中删除数据库和迁移文件。 (注意:因为这只是一个教程,没有输入真实数据,所以没关系)。但是,如果这样做不正确或(在我的情况下)你使用MySQL(而不是sqlite)并且迁移没有创建新字段(片段表中的所有者外键列),则会发生此错误。 / p>

要修复它,(我正在使用MySQL)我删除了数据库并重新创建它,然后从片段/迁移中删除了迁移文件(如教程建议并保留迁移文件夹)。然后做了一个完整的:python manage.py makemigrations,然后是python manage.py migrate。然后我在mysql中确认表是使用新的所有者外键列创建的。

本教程没有太多解释他们使用这些命令做什么。在我的愚见。 :)希望能帮助遇到同样事情的人。

答案 1 :(得分:0)

使用UserSerializer并将其设置为readonly

应该是

class SnippetSerializer(serializers.ModelSerializer):
    class Meta:
        model = Snippet
        owner = serializers.UserSerializer(read_only=True)
        fields = ('id', 'title', 'code', 'linenos', 'language', 'style','owner')