言葉で言えば、スタックエラーが深すぎるというエラーが返されます。ここで私はそれをどのように呼びますか。
<%= link_to time_ago_in_words(f.created_at), f %>
そして、ここで私がしたこと、article.helperで
def time_ago_in_words(time_str)
time = time_str.to_time + (-Time.zone_offset(Time.now.zone))
"happened #{time_ago_in_words(time)} ago"
end
time_ago_in_words を再定義できませんか? 私もフォローを試みたので、同じ種類のエラーが発生しました
<%= link_to ctime_ago_in_words(f.created_at), f %>
def ctime_ago_in_words(time_str)
time = time_str.to_time + (-Time.zone_offset(Time.now.zone))
"happened #{ctime_ago_in_words(time)} ago"
end