摘要: #根据名称反向生成url from django.conf.urls import url,include from django.contrib import admin from django.shortcuts import HttpResponse,redirect from app01 i 阅读全文
posted @ 2017-10-23 20:14 hsddon 阅读(207) 评论(0) 推荐(0) 编辑
摘要: #定义类的两种方式 #问:对象是由类创建?类是由Type创建。 #方式一: class Foo(object): class Meta: model = 'asdf' #方式二: _meta = type('Meta',(object,),{'model':'asdf'}) Foo = type(' 阅读全文
posted @ 2017-10-23 19:26 hsddon 阅读(88) 评论(0) 推荐(0) 编辑