1

我正在编写一个 Rails 应用程序,并且我有一些变量通过我的视图文件打印到我的浏览器控制台。特别是,我创建了一个具有以下格式的 ruby​​ 哈希:

{string: [array], string: [array]}

因此,例如,我可能拥有的一个可能的数组是

{'nil': [1,2, 3], "124": [4,5], "124/125": [6]}

当它被打印到浏览器控制台时,格式是关闭的。例如,现在我有:

{nil=>[1, 2, 3], "124"=>[4, 5], "124/217"=>[6]} 

我怎样才能摆脱添加的额外字符?

这是我的实际代码:

<% allBranches = Hash.new %>
<% currentBranch = Array.new %>

<% (1..@ancestry.length-1).each do |index| %>
    <% if @ancestry[index] == @ancestry[index-1] %>
        <% currentBranch.push(index) %>
    <% else %>
        <% allBranches[@ancestry[index-1]]=currentBranch %>
        <% currentBranch = Array.new %>
        <% currentBranch.push(index) %>
    <% end %>
<% end %>

<script type="text/javascript">
    console.log("allBranches: <%=allBranches%>");
</script>
4

1 回答 1

1

使用html_safe.

console.log("allBranches: <%=allBranches.to_s.html_safe%>");

如果allBranches已经是字符串,则该to_s部分是不必要且多余的。

于 2013-03-16T16:11:41.590 回答