通过官方手册来自定义了过滤器,自定义过滤器可以使用,但是发现自带的static 无法使用,js,css等没办法加载
闭关修行中......
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 的檔案
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 的檔案