Ruby json gem 正在编码 html 实体

发布于 2024-10-22 23:30:18 字数 627 浏览 1 评论 0原文

我在代码中创建了一个名为 timeOffsets 的哈希值

@timeOffsets = Hash.new
total=0
@sections.each do |i|
  @timeOffsets[i.shortcode] = total
  total+=i.length
end

,并使用 to_json 在 Javascript 中渲染它:

timeOffsets=<%[email protected]_json%>;

但我使用编码的 HTML 实体获取它:

timeOffsets={&quot;Introduction_to_Lists&quot;:0,&quot;Removing_elements&quot;:693,&quot;Joining__join_&quot;:1490};

如何阻止它对 HTML 实体进行编码?

I make a hash called timeOffsets in my code

@timeOffsets = Hash.new
total=0
@sections.each do |i|
  @timeOffsets[i.shortcode] = total
  total+=i.length
end

And I render it in Javascript using to_json, :

timeOffsets=<%[email protected]_json%>;

but I get it with the HTML entities encoded:

timeOffsets={"Introduction_to_Lists":0,"Removing_elements":693,"Joining__join_":1490};

How do I stop it from encoding the HTML entities?

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

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

发布评论

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

评论(1

夜夜流光相皎洁 2024-10-29 23:30:18
timeOffsets=<%=raw @timeOffsets.to_json%>

使用原始视图助手。

timeOffsets=<%=raw @timeOffsets.to_json%>

Use the raw view helper.

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