gpt4 book ai didi

python - Django 帮助 : AttributeError: 'module' object has no attribute 'Charfield'

转载 作者:太空狗 更新时间:2023-10-29 19:30:18 25 4
gpt4 key购买 nike

我看过几个类似的其他属性的帖子,但没有找到。 Python 和 Django 的新手 - 我已经完成了几个教程的第一部分,包括 Django 的“投票”教程,当它到达我为我的应用程序同步数据库的地步时,我总是得到'AttributeError:'module'对象没有属性 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。

非常感谢任何帮助! (我正在努力学习!)

最佳答案

那是 CharField,带有大写的“f”,而不是您代码中的 Charfield

关于python - Django 帮助 : AttributeError: 'module' object has no attribute 'Charfield' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11164420/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com