# 1
MVT == MVC
MVT M==Model V==View T==Template
MVC M==Model V==可视化 C==Control
# 2
ORM 对象关系映射: 使用一个中间工具将Python代码翻译成原生的SQL语句
# 3
如果要关联的对象在另外一个app中,可以显式的指出。下例假设Manufacturer模型存在于production这个app中,则Car模型的定义如下:
class Car(models.Model):manufacturer = models.ForeignKey('production.Manufacturer', # 关键在这里!! app_name.模型名on_delete=models.CASCADE,)