1(create app, home.html)
2015-11-08 本文已影响0人
EudeMo
创建app, 修改homepage
- requiste
python manage.py migrate //同步数据库
python manage.py createsuperuser //创建超级用户
- 打开127.0.0.1:8000/admin 测试成功
- 创建app:
python manage.py startapp AppName
- 修改appname下的views.py
from django.shortcuts import render
# Create your views here.
def home(request):
return render(request,"home.html",{})
- 修改projectname下的urls.py 指定homepage
from django.conf.urls import include, url
from django.contrib import admin
urlpatterns = [
url(r'^$','newsletter.views.home',name='home'),
url(r'^admin/', include(admin.site.urls)),
]
```
6. 编写home.html
为了可重用性,编写在另一个文件夹下templates
templates/home.html
```html
<h1>hi django</h1>
```
7. 修改配置文件
在projectname下面修改settings.py, 在TEMPLATES的DIRS添加如下代码:
```python
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, "templates")],#modified
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
```
其中DIRS中的templates为刚刚创建的文件夹。
8. 打开127.0.0.1:8000,看到hi django。至此指定homepage工作完成。