无效的多字节字符 (US-ASCII) MAC OSX RUBY on Rails 没有魔法编码?
在 ruby 1.8.7 上,我对瑞典字符 ÅäÖ 没有任何问题,但现在在 ruby 1.9.2 上出现了此异常。够奇怪的,它没有出现在我的 Ubuntu 机器上。
可以在不使用 Magic 编码或将 #encoding utf-8 放在每个带有瑞典字符的 ruby 文件顶部的情况下修复它吗?
On ruby 1.8.7 I had no problems with swedish chars ÅÄÖ but now on ruby 1.9.2 this exception comes up. Strangley enough it does not appear on my Ubuntu machine.
Can it be fixed without Magic encoding or putting #encoding utf-8 on top of every ruby file with Swedish chars?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来没有解决方案可以在不添加编码行的情况下避免此错误
Looks like there is no solution to avoid this Error without adding encoding line
嗯,尝试将其添加
到您的 ~/.profile、~/.bash_profile 或等效文件中。在这里起作用了!
Hmm, try to add this
to your ~/.profile, ~/.bash_profile or equivalent. It worked here!