rake db:国际化数据的种子

发布于 2024-11-03 17:13:37 字数 279 浏览 2 评论 0原文

我正在运行 rake db:seed 来填充数据库中的 i18n 数据,但它无法识别 i18n 字符。我得到的错误是

——rake 中止!

$HOME/db/seeds.rb:9:无效的多字节字符 (US-ASCII)

$HOME/db/seeds.rb:9:无效的多字节字符 (US-ASCII)

$HOME/db/seeds.rb:9:语法错误,意外的 $end,期待 '}'

在调用 rake 之前,我是否需要将本机语言字符串转换为 UTF-8 字符?

I am running rake db:seed to populate i18n data in the database but it doesn't recognize the i18n characters. The error that I get is --

rake aborted!

$HOME/db/seeds.rb:9: invalid multibyte char (US-ASCII)

$HOME/db/seeds.rb:9: invalid multibyte char (US-ASCII)

$HOME/db/seeds.rb:9: syntax error, unexpected $end, expecting '}'

Do I need to convert the native language strings into UTF-8 characters before calling the rake?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

听风吹 2024-11-10 17:13:37

只需将以下行添加为文件 seeds.rb 的第一行:

# -*- coding: utf-8 -*-

更新:
在 ruby​​ 2.0(如上所示)中,您不再需要这样做,utf-8 现在是默认编码。

Just add the following line as the first line of your seeds.rb the file:

# -*- coding: utf-8 -*-

UPDATE:
In ruby 2.0 (and seems above) you don't need to do this anymore, utf-8 is now being the default encoding.

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