1

我正在尝试这样做:

<%= <h1>Products Purchased </h1> if  params[:status].nil? || params[:status] == Order.statuses[0]  %>

<%= "<h1>Products Sent </h1>" if  params[:status].nil? || params[:status] == Order.statuses[1]  %>

谢谢你的帮助。

4

2 回答 2

10

您需要使用 .html_safe 从 ruby​​ 字符串输出 HTML 标记:

<%= "<h1>Products Sent </h1>".html_safe if params[:status].nil? || params[:status] == Order.statuses[1]  %>

但是您可以执行以下操作,更具可读性:

<% if params[:status].nil? || params[:status] == Order.statuses[1] %>
  <h1>Products Sent</h1>
<% end %>
于 2013-08-21T14:22:29.040 回答
1

这里的替代方案是:

<h1>
  <%= 'Products Purchased' if cond1 %>
  <%= 'Products Sent'      if cond2 %>
</h1>

或者,您可以content_tag对任何 HTML 标记使用辅助方法:

<%= content_tag(:h1, 'Products Purchased') if cond1 %>
<%= content_tag(:h1, 'Products Sent') if cond2 %>

其中,cond1 和 cond2 是您指定的“params[:status].nil?|| ...”

(我想知道当 cond1 和 cond2 都为假时会发生什么,但我认为它超出了这个话题)

于 2018-05-10T06:11:10.407 回答