高洛峰2017-04-18 09:34:41
static是單獨的一個問題
以http://192.168.0.27:8000/stat... 為例
專案路徑(manage.py所在的資料夾): c:/test/
app路徑: c: /test/app/
1、在setting 加上:STATIC_URL = '/static/'
就是在直接呼叫app路徑下的static文件,如:c:/test/app/static/bootstrap.min.css
2、在setting 加上:STATIC_ROOT = os.path.join(BASE_DIR,'static')
需要在c:/test/路徑下,執行python manage.py collectstatic
然後呼叫c:/test/static/ bootstrap.min.css 的檔案