Ruby on Rails 3.1 中的 toJSON 和 UTF8 字符串编码错误

发布于 2024-12-08 10:54:48 字数 459 浏览 0 评论 0原文

我在使用 to_json 导出 UTF8 字符串时遇到问题。

问题是,当我这样做时:

ruby-1.9.2-p290 :005 > "anche il più remoto".encoding
 => #<Encoding:UTF-8> 
ruby-1.9.2-p290 :006 > {:text => "anche il più remoto"}.to_json
 => "{\"text\":\"anche il pi\\u00f9 remoto\"}" 
{:text => "anche il più remoto"}.to_json.encoding
 => #<Encoding:US-ASCII> 
ruby-1.9.2-p290 :009 > 

如何跳过更改编码?我想将 UTF8 字符串返回给客户端,这样他们就无需对其进行解码。

I've got problem with UTF8 string exported using to_json.

The problem is that when I do this:

ruby-1.9.2-p290 :005 > "anche il più remoto".encoding
 => #<Encoding:UTF-8> 
ruby-1.9.2-p290 :006 > {:text => "anche il più remoto"}.to_json
 => "{\"text\":\"anche il pi\\u00f9 remoto\"}" 
{:text => "anche il più remoto"}.to_json.encoding
 => #<Encoding:US-ASCII> 
ruby-1.9.2-p290 :009 > 

How can i skip changing the encoding? I want to return UTF8 string to the clients so they don't have decode it.

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

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

发布评论

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

评论(1

你げ笑在眉眼 2024-12-15 10:54:48

你使用的是 json 还是 ruby​​-json gem?从此处来看,ruby-json 似乎存在问题。

尝试

s.add_dependency('json', '>= 1.5.3')  # this
s.add_dependency('ruby-json', '>= 1.1.2')   # not this

# and

require 'json' #this
require 'json/objects' # not this

Are you using json or ruby-json gem? From here, it's looking like ruby-json is having problems.

Try

s.add_dependency('json', '>= 1.5.3')  # this
s.add_dependency('ruby-json', '>= 1.1.2')   # not this

# and

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