标签: django python-3.x
在Django 1.11教程和文档中,代码样式到处都是super(child,self)。 例如:
super(child,self)
return super(ContactView, self).form_valid(form)
它有什么优势?在当前班级提醒你记忆?
答案 0 :(得分:1)
为了与运行python2的项目兼容。