Django“模块”对象没有属性“StringProperty”;

发布于 2024-11-09 15:02:50 字数 334 浏览 0 评论 0原文

我才刚刚开始......我正在尝试使用 Django 模型,但我得到了:

AttributeError: 'module' object has no attribute 'StringProperty'

您能告诉我问题出在哪里吗?

from django.db import models

# Create your models here.
class Test(models.Model):
    text = models.StringProperty()
    date = models.DateTimeProperty()

谢谢你!

I'm just starting... I'm trying to use Django models but I'm getting the:

AttributeError: 'module' object has no attribute 'StringProperty'

Can you please tell where can be the issue?

from django.db import models

# Create your models here.
class Test(models.Model):
    text = models.StringProperty()
    date = models.DateTimeProperty()

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

呆头 2024-11-16 15:02:50

您的问题是您有一些虚假的模型字段类型。以下是 django 的正确字段(在 django 模型字段参考文档)

from django.db import models

# Create your models here.
class Test(models.Model):
    text = models.CharField(max_length=255)
    date = models.DateTimeField()

Your problem is you've got some bogus model field types. Here are the correct ones for django (read about them and other available field types in the django model field reference docs)

from django.db import models

# Create your models here.
class Test(models.Model):
    text = models.CharField(max_length=255)
    date = models.DateTimeField()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文