将数据从 Excelfile 写入数据库 (mysql) 时出现编码错误

发布于 2024-12-07 21:15:29 字数 298 浏览 0 评论 0原文

写入数据库时​​出现此错误:

Encoding::UndefinedConversionError "\xD0" from ASCII-8BIT to UTF-8

经过一番谷歌搜索后,问题似乎出在 ruby​​ 1.9.2 字符串处理中,但没有找到真正的解决方案。

我使用 magic_encoding 对所有数据强制使用 utf-8。我的数据库也运行在 utf-8 上。

我正在运行 Rails 3.1 和 ruby​​ 1.9.2。

任何人都可以阐明这个错误吗?

I get this error when writing to database:

Encoding::UndefinedConversionError "\xD0" from ASCII-8BIT to UTF-8

After googling around a bit the problem seems to lie in ruby 1.9.2 string handling but no real solution found.

I use magic_encoding to force utf-8 on all data. My database runs on utf-8 as well.

I'm running rails 3.1 and ruby 1.9.2.

Anyone that can shine some light on this error?

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

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

发布评论

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

评论(1

半窗疏影 2024-12-14 21:15:29

您应该将此行添加到 .rb 文件的顶部

# encoding: utf-8

或者您可以使用此 gem

magic_encoding

相关主题:

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

You should add this line to the top of your .rb file

# encoding: utf-8

Or you can use this gem

magic_encoding

Related topic:

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

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