Messy " returned from Rails 3 controller to vi

2019-04-14 03:00发布

On my Rails 3 app controller I have the following code:

array = []
Location.all.each{|x|array<<x.city.html_safe}
@data_dump = array

In the Rails console it looks nice and clean:

["Littelside", "Tessmouth"]

In my view the @data_dump object gets encoded:

[&quot;Littelside&quot;, &quot;Tessmouth&quot;]

How do you clean this mess up? I want my object in view, to return as the object does in terminal. Thanks in advance!

1条回答
smile是对你的礼貌
2楼-- · 2019-04-14 03:34

What about:

<%=raw @data_dump %>
查看更多
登录 后发表回答