如何使用helper幹這段代碼?DRY link_to for current_user
<% if current_user %>
<%= link_to "All images", images_path %>
<% end %>
感謝
如何使用helper幹這段代碼?DRY link_to for current_user
<% if current_user %>
<%= link_to "All images", images_path %>
<% end %>
感謝
可以使用link_to_if
幫手:
<%= link_to_if current_user, 'All Images', images_path %>
你說你要調用的應用助手的方法? –