# MVC和MTV
MVC = models(数据库) + views(模板html) + controllers(业务逻辑处理)
MTV = models(数据库) + template(模板html) + views(业务逻辑)
django属于MTV
04-18 04:06