一、MTV模型之views.py文件
记得每次开始工作之前要使用以下命令切换到virtualenv环境哦:
source env/bin/activate
一、在Django下创建App
python manage.py startapp books
Books目录结构
这个目录包含了这个app的模型和视图。 打开views.py输入
from django.shortcuts import render_to_response
import datetime
def current_datetime(request):
now = datetime.datetime.now()
return render_to_response('index.html', {'current_date': now})
二、MTV模型之Templates文件
在mysite
目录下建立templates
文件夹(和我们的应用books同级目录),并建立index.html
文件内容为:
{{current_date}}
三、设置setting.py
在设置页面增加创建的app:
并在TEMPLATE下面的DIRS处设置模版路径。
'DIRS': [os.path.join(BASE_DIR, 'templates')],