我有content_tag問題成幫手,這段代碼content_tag不會返回空白
def renderize(place_holder)
content_tag(:div, "hello") do
@raw_estimate.field_estimates.where(:field_position_id => FieldPosition.where(:place_holder => place_holder).first).each do |field|
if field.field_type.alias == "input"
content_tag :div do
field.is_validate ? label_value = "*#{field.name}" : label_value = field.name
content_tag(:label_tag, label_value) +
text_field_tag("estimate[field_#{field.name.downcase.gsub(/\W+/, '')}]")
end
end
end
end
end
不返回任何內容,我缺少什麼? 謝謝
你叫<%= renderi ze(arg)%>? – apneadiving
@apneadiving是我做了<%= renderize(「user-data」)%>。我也嘗試過使用'def renderize(place_holder)content_tag(:div,「hello」)end'並輸出結果,我認爲這是與每個塊相關的東西。 –
可怕的價值是什麼:@ raw_estimate.field_estimates 。:(field_position_id => FieldPosition.where(:place_holder => place_holder).first) – apneadiving