摘要: 方法一:全自动 ——利用orm自动帮无名创建第三张关系表 class Book(models.Model): name = models.CharField(max_length=32) authors = models.ManyToManyField(to='Author') class Auth 阅读全文
posted @ 2023-10-23 20:08 wellplayed 阅读(11) 评论(0) 推荐(0) 编辑
摘要: MTV # MTV: Django号称是MTV模型 M:models T:templates V:views MVC # MVC: Django本质也是MVC模型 M:models V:views C:controller # vue框架:MVVM模型 阅读全文
posted @ 2023-10-23 19:36 wellplayed 阅读(2) 评论(0) 推荐(0) 编辑