RailsCast #213 Calendars (revised)是关于制作一个显示博客帖子published_on
日期的日历。在views/articles/index.html
中,作者提出了以下代码:
<%= calendar @date do |date| %>
<%= date.day %>
<% end %>
调用他在calendar_helper.rb
中包含的辅助方法。这适用于Rails 3.2应用程序,但当我尝试在Rails 4应用程序中使用它时,我只得到一个空白页面。我在puts
方法中添加了table
个语句:
def table
content_tag :table, class: "calendar" do
puts header
puts week_rows
header + week_rows
end
end
并且日历打印到服务器日志,但页面上仍然没有显示任何内容。有没有关于这段代码的东西,它在Rails 4中使用Ruby 2已经过时了?
module CalendarHelper
def calendar(date = Date.today, &block)
Calendar.new(self, date, block).table
end
class Calendar < Struct.new(:view, :date, :callback)
HEADER = %w[Sunday Monday Tuesday Wednesday Thursday Friday Saturday]
START_DAY = :sunday
delegate :content_tag, to: :view
def table
content_tag :table, class: "calendar" do
header + week_rows
end
end
def header
content_tag :tr do
HEADER.map { |day| content_tag :th, day }.join.html_safe
end
end
def week_rows
weeks.map do |week|
content_tag :tr do
week.map { |day| day_cell(day) }.join.html_safe
end
end.join.html_safe
end
def day_cell(day)
content_tag :td, view.capture(day, &callback), class: day_classes(day)
end
def day_classes(day)
classes = []
classes << "today" if day == Date.today
classes << "notmonth" if day.month != date.month
classes.empty? ? nil : classes.join(" ")
end
def weeks
first = date.beginning_of_month.beginning_of_week(START_DAY)
last = date.end_of_month.end_of_week(START_DAY)
(first..last).to_a.in_groups_of(7)
end
end
end
答案 0 :(得分:1)
我在RailsDispatch Blog Post中发现了从Rails 2升级到Rails 3的原因(搜索“Block Helpers”部分)。
Rails 2.3,阻止帮助程序,例如使用&lt; %%&gt;工作的form_for。这有点令人困惑,因为他们向页面发布了内容,因此您希望他们使用&lt;%=%&gt ;.
...在Rails 3中,您使用&lt;%=%&gt;对于块帮助程序,它大大简化了构建块帮助程序的过程。
... Rails 3.0将继续使用旧语法,但它会发出弃用警告,核心团队将删除Rails 3.1中的旧语法。
因此,如果是Rails 2.3中的一个缺陷,这在Rails 3.0中得到了解决。
答案 1 :(得分:0)
我错误地复制了代码。如果第一行包含等号<%=
,那么这种方法很有意义。
<%= calendar @date do |date| %>
<%= date.day %>
<% end %>