一个用户拥有许多产品,一个产品仅属于一个用户。在用户个人资料中,我想实现这个概念:
<% if @product.include? current_user.id %>
<%= link_to 'My product', product_path %>
<% end %>
<%= link_to 'Create New Product', new_product_path %>
<%= link_to 'Edit', edit_user_registration_path %>
答案 0 :(得分:-1)
如果实现正确的关系,以下代码将起作用
<%current_user.products.present?%>
<%@current_user.products.map|product|%>
<%= @product.name%>
<button> Create Product </button>
<%end%>
<%else%>
<button> Create Product </button>
<%end%>