我刚开始......我正在尝试使用Django模型,但我得到了:
AttributeError:'module'对象没有属性'StringProperty'
你能说出问题出在哪里吗?
from django.db import models
# Create your models here.
class Test(models.Model):
text = models.StringProperty()
date = models.DateTimeProperty()
谢谢!
答案 0 :(得分:1)
你的问题是你有一些虚假的模型字段类型。以下是django的正确内容(请阅读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()