gpt4 book ai didi

ruby-on-rails - 从 Ruby 表中读取数据

转载 作者:太空宇宙 更新时间:2023-11-03 16:55:42 25 4
gpt4 key购买 nike

我刚刚读了this question 我也有同样的问题,但我想要更多。

%= puts @note.inspect %> I have this this result.

Note id: 1, user_id: 1, note_type: 0, text: "Hello", lat: 40.2290542420142, lng: 44.420879046875, deleted: false, created_at: "2012-04-26 14:10:05", updated_at: "2012-04-26 14:10:05">,

Note id: 2, user_id: 1, note_type: 0, text: "Bye", lat: nil, lng: nil, deleted: false, created_at: "2012-04-27 08:13:44", updated_at: "2012-04-27 08:13:44"

我也这样做了@note.first.text,但在这里我只能得到一个值。但是我想得到这个结果。

  1. Hello World 70.2290542420142 74.420879046875
  2. 再见

我怎样才能做到这一点?

最佳答案

看起来@note 是一个数组。所以尝试这样的事情:

<%- for n in @note %>
<%= n.text %>
<%= n.lat %>
<%= n.lng %>
<%- end %>

关于ruby-on-rails - 从 Ruby 表中读取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10347289/

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