我正在尝试借助 content_tag 方法在 Ruby on Rails 中构建一个表。
当我运行这个:
def itemSemanticDifferential(method, options = {})
if options[:surveyQuestion].any? then
@template.content_tag(:tr) do
@template.content_tag(:td, options[:surveyQuestion], :colspan => 3)
end
end
@template.content_tag(:tr) do
@template.content_tag(:th, options[:argument0])
end
end
只有第二部分被渲染:
@template.content_tag(:tr) do
@template.content_tag(:th, options[:argument0])
end
谁能告诉我这是为什么?