Python:Django templates下的html加载css问题
作者:互联网
控制台提示refused to apply style from 'xxxx' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
在Django项目对应app下创建文件夹static用于存放项目相关静态文件如css、img等,static下也可再创建子文件夹,
在前端引用static下的文件时,路径前加上/static/
如
<link rel="shortcut icon" href="/static/img/icon/logo.jpeg" />
settings配置文件内容基本是默认生成的内容未进行相关修改
标签:templates,Python,Django,html,MIME,static,type,css 来源: https://www.cnblogs.com/bloglogs/p/16244689.html