码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2014-12-19 15:31:49      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

用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

标签:

原文地址:http://www.cnblogs.com/lance2088/p/4173868.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!