gpt4 book ai didi

ruby-on-rails - 在 RoR View 中显示 JSON 变量

转载 作者:行者123 更新时间:2023-12-02 02:43:15 24 4
gpt4 key购买 nike

我正在尝试在我放入此变量“@yearbook”的 View 中显示 json:

def list
file = File.open("#{Rails.root}/lib/service.json", "r")
service = file
service = service.read
service = JSON.parse(service)
@yearbook = service
end

在我的 View 文件中,我浏览了每个“@yearbook”元素并像这样简单地显示它:

<% @yearbook.each do |item| %>
<tr>
<p><%= item %></p>
</tr>

这是我从浏览器的 View 中得到的(这是正常的):

{"name"=>"...", "description"=>"..."}
{"name"=>"...", "description"=>"..."}
...

现在我不明白如何指定 View 向我显示“名称”和“描述”属性而不是格式化的 json 对象,使其看起来更像这样:

name: ..., description: ...

name: ..., description: ... and so on...

希望一切顺利,干杯。

最佳答案

像下面这样的东西怎么样:

<% @yearbook.each do |item| %>
<tr>
<p>
<%= "name:" "#{item["name"]}" %>
<%= "description:" "#{item["description"]}" %>
</p>
</tr>
<% end %>

关于ruby-on-rails - 在 RoR View 中显示 JSON 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57852773/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com