我正试图叉django-oscar来更改产品属性(多选项)的仪表板形式。每个选项都需要一个说明字段。
project/oscar_fork/catalogue/models.py:
from django.db import models
from django.utils.translation import ugettext_lazy as _
from oscar.apps.catalogue.abstract_models import AbstractAttributeOption, AbstractAttributeOptionGroup
class AbstractAttributeOption(AbstractAttributeOption):
description = models.CharField(_('Description'), max_length=250, blank=True)
group = models.ForeignKey(
'catalogue.AttributeOptionGroup',
on_delete=models.CASCADE,
related_name='optionsblabla',
verbose_name=_("Group"))
from oscar.apps.catalogue.models import *
在我的数据库中用额外的字段“ description”更改了模型,但仍然在表单字段返回中找不到此字段。
project/oscar_fork/dashboard/catalogue/forms.py:
from oscar.apps.dashboard.catalogue import forms as base_forms
class AttributeOptionForm(base_forms.AttributeOptionForm):
class Meta(base_forms.AttributeOptionForm.Meta):
fields = ('option', 'description')
如果我直接在Oscar应用程序中更改form.py和models.py字段,它将起作用。如上所示,可以很容易地分叉其他形式。使用AttributeOptionGroupForm进行了尝试。我认为导入顺序有问题。我该如何解决?
Error:
django.core.exceptions.FieldError: Unknown field(s) (description) specified for AttributeOption
我正在使用django-oscar v1.6。 Django v.2.08。
答案 0 :(得分:2)
您的具体模型应命名为AttributeOption
,而不使用'Abstract'
,否则oscar不会选择它,而是使用自己的AttributeOption
模型,该模型没有描述:
class AttributeOption(AbstractAttributeOption):
description = ...
此后,您将必须运行makemigrations
和migrate
。
检查最后导入的models
模块的source code。您将看到他们的动态模型加载方式:
if not is_model_registered('catalogue', 'AttributeOption'):
class AttributeOption(AbstractAttributeOption):
pass