0

在我的表格中,我有

<!-- Allow Custom Orders Field -->
<div class="control-group">
  <label class="control-label">Allow Custom Orders?</label>
  <div class="controls">
    <%= f.select :allow_custom_orders, [["Yes", 1], ["No", 2]],
                 label: false %>

  </div>
</div>

在我的节目中,我想检查是否"Yes"或被"No"选中,然后显示我的按钮。

<% if @shop.allow_custom_orders = "1"  %>
  <div>
    <small>Need a custom order?</small>
    <%= link_to "Request Custom Order", "#",
                class: "btn btn-small btn-embossed btn-block btn-info" %>
  </div>
  <% end %>

但这似乎不起作用,有什么建议吗?

我是 Rails 的新手,所以请多多包涵:)

4

1 回答 1

0

好的,发现了:)实际上很简单

<% unless @shop.allow_custom_orders == 2  %>
于 2013-08-20T03:43:11.310 回答