【发布时间】:2011-12-02 11:42:40
【问题描述】:
我正在尝试使用 Rail 的 distance_of_time_in_words 帮助程序,但由于某种原因我收到了未定义的方法错误。这是我的代码:
def confirm_has_quota
last_upload = current_user.photos.last.created_at
remaining_time = distance_of_time_in_words(1.day.ago, last_upload)
if last_upload < 1.day.ago
return true
else
flash[:error] = "You are allowed 1 upload per day. Please try again in" + remaining_time + "."
redirect_to(:back)
end
end
这给了我“未定义的方法 `distance_of_time_in_words'”。有人看到我在这里做错了吗?谢谢。
【问题讨论】:
标签: time