Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
rails 内部的某些东西阻止了文件在 utf-8 中提供。
他们是否为 utf-8 添加了一些新配置?我正在运行 rvm ruby 2 和 rails 4
这看起来像是缺少标题或会告诉您的浏览器文本是 UTF-8 的东西。您的 HTML 页面应包含类似
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
或者
<meta charset="UTF-8">
假设它是 HTML。
我曾经把它放在第一行:
#encoding: utf-8