Anaconda新建Django工程和配置靜態文件

在Anaconda命令行輸入:css

1 conda install Django

用命令行在Anaconda對應的Scripts文件夾下:html

1 django-admin startproject mysite  #mysite爲工程名

完成後自動在Scripts文件夾下會生成一個mysite文件夾,文件夾中包含一個同名mysite文件夾和一個manage.py文件。python

完成後啓動,默認地址127.0.0.1:8000,只能本機訪問。django

1 python manage.py runserver

 

配置靜態文件時,先在第一層mysite文件夾下新建static文件夾,再在settings.py中添加代碼:ui

1 STATIC_URL = 'static/'
2 STATIC_ROOT = os.path.join(BASE_DIR,'static')
1 from django.conf import settings
2 from django.conf.urls.static import static
3 
4 urlpatterns = [
5     url(r'^admin/', admin.site.urls),
6     url(r'^hello/', hello),
7     url(r'^$', test),
8 ] + static(settings.STATIC_URL, document_root = settings.STATIC_ROOT)
9 #添加+static這一段

在html文件中調用靜態文件時,在<!DOCTYPE html>行前面添加一行:url

1 {% load static %}
2 <!DOCTYPE html>

在調用時格式以下,url地址就是須要調用的static中靜態文件地址:spa

1 <link href="static/css/flat-ui.css"  rel="stylesheet">
2 <img src="static\images\image.jpg" class="img-responsive img-rounded">
相關文章
相關標籤/搜索