django訪問靜態資源css, js, 圖片報編碼錯誤解決辦法

來源:互聯網
上載者:User

錯誤截圖如下

可以發現所有的靜態資源檔案,包括css, js, 圖片檔案都找不到,後台錯誤判編碼錯誤。

試過很多辦法,包括在settings.py 中設定 DEFATULT_CHARSET='UTF-8' 等,也還試過有人說過的,在manage.py 中加入下面的語句:
程式碼 程式碼

 代碼如下 複製代碼

reload = reload(sys)
sys.setdefaultencoding("cp1251")

#其實這裡還會報錯,貌似python2.7 不支援 setdefaultencoding


這樣做,貌似會解決部分問題,但沒有全部解決。有部分css,js 可以開啟,但圖片好像還是有問題,繼續找答案,最好找到一個方案可以解決:

在C:\Python27\Lib\site-packages 目錄下增加一個檔案:sitecustomize.py 其內容如下:

程式碼 程式碼

 代碼如下 複製代碼

import sys
sys.setdefaultencoding("cp1251")


再次運行django server , 一切正常了。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.