Django第6章:无法导入Book模型

时间:2015-01-12 14:22:27

标签: python django

我正在学习Django浏览在线书籍,现在我被困在Chapter 6。在将模型添加到管理网站部分中,读者需要在图书应用中使用以下内容创建名为admin.py的文件:

from django.contrib import admin
from mysite.books.models import Publisher, Author, Book

admin.site.register(Publisher)
admin.site.register(Author)
admin.site.register(Book)

这应该是可以在管理站点上编辑这些模型,但我得到的是以下内容:

  

/ admin /的ImportError没有名为books.models的模块

在Python命令行中,我收到类似的错误:

>>> from mysite.books.models import Book
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named mysite.books.models

这些是models.py文件的内容:

from django.db import models

class Publisher(models.Model):
    name = models.CharField(max_length=30)
    address = models.CharField(max_length=50)
    city = models.CharField(max_length=60)
    state_province = models.CharField(max_length=30)
    country = models.CharField(max_length=50)
    website = models.URLField()

    def __unicode__(self):
        return self.name

    class Meta:
        ordering = ['name']


class Author(models.Model):
    first_name = models.CharField(max_length=30)
    last_name = models.CharField(max_length=40)
    email = models.EmailField()

    def __unicode__(self):
        return u'%s %s' % (self.first_name, self.last_name)


class Book(models.Model):
    title = models.CharField(max_length=100)
    authors = models.ManyToManyField(Author)
    publisher = models.ForeignKey(Publisher)
    publication_date = models.DateField()

    def __unicode__(self):
        return self.title

我严格按照本书中的说明进行操作,因此我应该准确复制所使用的代码。文件结构由Django自动创建:

books
  __init__.py
  admin.py
  models.py
  tests.py
  views.py
mysite
  templates
  __init__.py
  settings.py
  urls.py
  views.py
  wsgi.py
manage.py

models模块中导入admin文件的正确方法是什么?

1 个答案:

答案 0 :(得分:3)

这是一本非常古老的书,有些内容在当前版本的Django中已被弃用。

尝试此导入:

from books.models import Publisher, Author, Book

而不是:

from mysite.books.models import Publisher, Author, Book