我从几天开始一直在学习 django。我有几个模型,一旦我在 admin.py 中注册模型,这些模型就会完美地显示在管理站点上。但我想创建database view
(不是view
django 所指的),我已经为视图创建了模型,managed = False
在 models.py 上。这个数据库视图是两个表的连接。当我启动我的服务器时,我得到一些错误,说我的数据库视图不是一个表,这是正确的。但是我在这里遗漏了一些我无法解决的问题。我可能错过了什么。或者我对数据库视图本身的整个想法是错误的,如果是这样,我该怎么做 - 是不是我必须运行 sql(当然使用 django db api)。
这是我的代码。
class product(models.Model):
users = models.ForeignKey(User)
product = models.CharField(max_length=20)
def __unicode__(self):
return self.product
class product_models(models.Model):
product = models.ForeignKey('product')
model_name = models.CharField(max_length=50)
model_price = models.IntegerField(max_length=4)
model_desc = models.TextField(blank=True)
commision = models.IntegerField(max_length=3)
def __unicode__(self):
return self.model_name
class my summary_view(model.Model):
# this is my database view
product = models.ForeignKey('product')
model_name = models.ForeignKey('product_models')
class meta :
managed = False
"""
I am assuming this is what above code does, I may be wrong also here in creating
database view in the above table .
Create View `summary_view` as
Select
p.product, m.model_name
From
products p , product_model m.
"""