添加一个新应用程序到django-oscar

时间:2015-03-02 13:49:36

标签: python django django-oscar

我正在使用Django-Oscar制作书店,一切都很顺利。但我想添加一个应用程序(模型/视图/管理员)来显示有关该书作者的一些信息。

因为我不想更改任何存在的应用程序。我刚刚用我的应用程序AUTHORS的新名称做了一个STARTAPP。但是django正在向我展示一些错误。我不知道是不是因为我没有分叉奥斯卡,或者为什么。在互联网上的例子中我没有发现任何类似的东西。

这是我在尝试为新应用程序执行SYNCDB时遇到的错误。

 Traceback (most recent call last):
 File "manage.py", line 10, in <module>
 execute_from_command_line(sys.argv)
 File "/Users/reyesoscar/Desktop/oscar/lib/python2.7/site-packages/django/core/management/__init__.py", line 385, in execute_from_command_line
utility.execute()

  File "/Users/reyesoscar/Desktop/oscar/lib/python2.7/site-packages/django/core/management/__init__.py", line 354, in execute
django.setup()
  File "/Users/reyesoscar/Desktop/oscar/lib/python2.7/site-packages/django/__init__.py", line 21, in setup
apps.populate(settings.INSTALLED_APPS)
  File "/Users/reyesoscar/Desktop/oscar/lib/python2.7/site-packages/django/apps/registry.py", line 108, in populate
app_config.import_models(all_models)
  File "/Users/reyesoscar/Desktop/oscar/lib/python2.7/site-packages/django/apps/config.py", line 202, in import_models
self.models_module = import_module(models_module_name)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/importlib/__init__.py", line 37, in import_module
__import__(name)
  File "/Users/reyesoscar/Desktop/oscar/frobshop/author/models.py", line 5, in <module>
class AuthorProfile(models.Model):
  File "/Users/reyesoscar/Desktop/oscar/frobshop/author/models.py", line 6, in AuthorProfile
   Author_name = models.ForeignKey(max_length=70, blank=False, null=True)
TypeError: __init__() takes at least 2 arguments (1 given)

谢谢!

1 个答案:

答案 0 :(得分:1)

当您使用ForeignKey时,您必须告诉Django与author_name相关的模型。从它来自另一个应用程序,它应该看起来像这样。

author_name = models.ForeignKey('your_app_name.Modelname')

应用名称是您从作者所在的模型中获取作者的其他应用。

https://docs.djangoproject.com/en/1.7/ref/models/fields/#foreignkey