我已經看到了幾個類似的其他屬性的帖子,但沒有發現。 Python和Django新手 - 我已經完成了幾個教程的第一部分,包括Django的「投票」教程,並且當它達到我的應用程序的syncdb時,我總是得到'AttributeError:'模塊'對象沒有屬性CharField 。Django幫助:AttributeError:'模塊'對象沒有屬性'Charfield'
在我抄完全按照教程模型說:
從django.db進口車型
class Poll(models.Model):
question = models.Charfield(max_length=200)
pub_date = models.DateTimeField('date published')
class Choice(models.Model):
poll = models.ForeignKey(Poll)
choice = models.CharField(max_length=200)
votes = models.IntegerField()
# Create your models here.
「投票」也被添加到安裝的應用程序,我使用sqlite3的,Windows 7的,python 2.7。
任何幫助非常感謝! (我正在努力學習!)
哎呀,這是最簡單的事情,盯着我的臉!感謝您的快速回答! – user1475955