首页 > 代码库 > 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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。