无效的多字节字符 (US-ASCII) MAC OSX RUBY on Rails 没有魔法编码?

发布于 2024-12-07 10:36:45 字数 168 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

长伴 2024-12-14 10:36:45

看起来没有解决方案可以在不添加编码行的情况下避免此错误

将“#coding: utf-8”添加到所有文件

Looks like there is no solution to avoid this Error without adding encoding line

Add "# coding: utf-8" to all files

孤独患者 2024-12-14 10:36:45

嗯,尝试将其添加

export LC_ALL="en_US.UTF-8"

到您的 ~/.profile、~/.bash_profile 或等效文件中。在这里起作用了!

Hmm, try to add this

export LC_ALL="en_US.UTF-8"

to your ~/.profile, ~/.bash_profile or equivalent. It worked here!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文