1 | python3 manage.py startapp {name} |
改一个配置
1 | STATICFILES_DIRS = (os.path.join(BASE_DIR,'static'),) |
html加一个static
1 | {% load static %} |
views.py
1 | from django.shortcuts import render |
urls.py
1 | from django.conf.urls import url |
1 | python3 manage.py startapp {name} |
改一个配置
1 | STATICFILES_DIRS = (os.path.join(BASE_DIR,'static'),) |
html加一个static
1 | {% load static %} |
views.py
1 | from django.shortcuts import render |
urls.py
1 | from django.conf.urls import url |
本文标题:python实战计划 用 Django 搭建简单网页
文章作者:Renld
发布时间:2016年08月15日 - 22时55分
最后更新:2016年08月17日 - 18时03分
原始链接:http://renld.github.io/2016/08/15/PL4-1/
许可协议: "署名-非商用-相同方式共享 3.0" 转载请保留原文链接及作者。