django 1.9自动创建表
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser
MIDDLEWARE_CLASSES = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.locale.LocaleMiddleware',
将locale中间件插入到这里,django后台可以中文显示
Django添加静态文件设置
STATIC_URL = '/statics/'
STATIC_ROOT= os.path.join(BASE_DIR, 'statics')
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'app01/statics'),
)
TEMPLATE_DIRS = (
os.path.join(BASE_DIR, 'templates'),
)
工程中新建一个与templates同级目录的statics目录,
[attach]123300[/attach]
html中:
[attach]123301[/attach]
不明白django1.9为什么没有 objects.all()这个方法。
原来all()在from django.db.models.manager import BaseManager这个里面
但是也可以用
from django.db.models.manager import BaseManager
from models import BBS
def index(request):
bbs_list = BaseManager.all(BBS.objects)
return render_to_response("index.html",{'bbs_list': bbs_list})
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) | Powered by Discuz! X3.2 |