首页 > 代码库 > Resource interpreted as Stylesheet but transferred with MIME type application/x-css

Resource interpreted as Stylesheet but transferred with MIME type application/x-css

用tornado做了一个简单的页面。结果页面中的css被加载了,但是没有效果。用谷歌浏览器调试,说是Resource interpreted as Stylesheet but transferred with MIME type application/x-css。大概意思就是css文件被识别为样式表了,但是传输的时候是以application/x-css格式。这样就造成浏览器不能正常显示页面,css完全不起作用。原因就是,tornadod中的web.py在设置content_type时会调用mimetypes.guess_type()

技术分享

mimetypes在初始化的时候,如果是windows环境下,就会读取本地的注册表。
技术分享

因此只要把注册表中,css文件的Content Type由applicntion/x-css
技术分享
改为text/css即可。
技术分享

Resource interpreted as Stylesheet but transferred with MIME type application/x-css