摘要:
1 @ECHO OFF 2 ECHO "clean start please wait........." 3 DEL /f /s /q %systemdrive%\*.tmp 4 DEL /f /s /q %systemdrive%\*._mp 5 DEL /f /s /q %systemdri... 阅读全文
摘要:
Django 1.6 基于类的通用视图 最初 django 的视图都是用函数实现的,后来开发出一些通用视图函数,以取代某些常见的重复性代码。通用视图就像是一些封装好的处理器,使用它们的时候只须要给出特定的参数集即可,不必关心具体的实现。各种通用视图的参考参见:https://docs.django... 阅读全文
摘要:
Generic editing views¶The following views are described on this page and provide a foundation for editing content:django.views.generic.edit.FormViewdj... 阅读全文