将 Ruby 字符串编码为 JSON 字符串

发布于 2024-11-25 16:35:13 字数 423 浏览 1 评论 0原文

json gem 不允许直接将字符串编码为其 JSON 表示形式。我暂时将这个 PHP 代码: 移植

$text = json_encode($string);

到这个 Ruby:

text = string.inspect

它似乎完成了这项工作,但由于某种原因,如果 string 本身包含带有换行符的文字字符串(它实际上是 JS 代码),这些换行符 \n 将保持原样 \n,而不是编码为 \\n。我可以理解这是否是 #inspect 的正确行为,但是...

如何将字符串值编码为其在 Ruby 中的 JSON 表示形式?

The json gem does not allow for directly encoding strings to their JSON representation. I tentatively ported this PHP code:

$text = json_encode($string);

to this Ruby:

text = string.inspect

and it seemed to do the job but for some reason if the string itself contains a literal string (it's actually JS code) with newlines, these newlines \n will stay as-is \n, not be encoded to \\n. I can understand if this is the correct behaviour of #inspect, but...

How does one encode a string value to its JSON representation in Ruby?

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

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

发布评论

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

评论(3

错々过的事 2024-12-02 16:35:13

这适用于库存 1.9.3+ 标准库 JSON:

require 'json'
JSON.generate('foo', quirks_mode: true) # => "\"foo\""

如果没有 quirks_mode: true,您会得到可笑的“JSON::GeneratorError:仅允许生成 JSON 对象或数组”。

This works with the stock 1.9.3+ standard library JSON:

require 'json'
JSON.generate('foo', quirks_mode: true) # => "\"foo\""

Without quirks_mode: true, you get the ridiculous "JSON::GeneratorError: only generation of JSON objects or arrays allowed".

终弃我 2024-12-02 16:35:13

从 Ruby 2.1 开始,您可以

require 'json'

'hello'.to_json

As of Ruby 2.1, you can

require 'json'

'hello'.to_json
倾城泪 2024-12-02 16:35:13

Ruby 有无数的 JSON gem,有些是纯 Ruby,有些是基于 C 的以获得更好的性能。

下面是一个同时提供纯 Ruby 和 C 语言的版本:
http://flori.github.com/json/

然后它的本质是:

require 'json'
JSON.encode(something)

一个流行的 JSON 编码器/具有本机 C 绑定以提高性能的解码器是 Yajl: https://github.com/brianmario/yajl-ruby< /a>

来自@Stewart的UPD
JSON.encode 由 Rails 提供,object.to_json 也是如此。对于 Rails 之外的使用,请使用 ruby​​ 1.9.3 std-lib 中的 JSON.generate。 ——斯图尔特

There are a myriad of JSON gems for Ruby, some pure Ruby some C-based for better performance.

Here is one that offers both pure-Ruby and C:
http://flori.github.com/json/

And then its essentially:

require 'json'
JSON.encode(something)

A popular JSON encoder/decoder with native C-bindings for performance is Yajl: https://github.com/brianmario/yajl-ruby

UPD from @Stewart:
JSON.encode is provided by rails as is object.to_json. For uses outside of rails use JSON.generate which is in ruby 1.9.3 std-lib. – Stewart

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