谢谢你的时间!
我是 Rails 新手,对view helper
.
我在helpers/application_helper.rb
.
def error_table()
return %{<table>...</table>}
end
我error_table
在show.html.erb
.
<%= error_table() %>
但是当我查看这个页面时,它给了我这个字符串<table>...</table>
。
我查看了 html 源代码,它看起来像这样:<table>...</table>
我想将此表插入到 html 页面而不是显示它。我该怎么办?