将数据从 Excelfile 写入数据库 (mysql) 时出现编码错误
写入数据库时出现此错误:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将此行添加到 .rb 文件的顶部
或者您可以使用此 gem
相关主题:
You should add this line to the top of your .rb file
Or you can use this gem
Related topic: