我的产品页面显示视图上有一个结帐按钮,它接受报价。每个优惠都属于一个用户。我不希望创建优惠的用户能够自己接受它,所以如果它是页面上的当前用户,我想隐藏该按钮。我不知道为什么这段代码不起作用:
<% unless current_user.id == @offer.sender_id %> #sender_id is a foreign key in the offer model that makes each offer belong_to a user.
<div id="accept_offer">
<%= button_to 'Accept Offer', etc %>
</div>
<% end %>
current_user 是我相信的一种设计 gem 方法。
任何帮助表示赞赏。