2015-11-04 83 views
3

如何使用helper幹這段代碼?DRY link_to for current_user

<% if current_user %> 
    <%= link_to "All images", images_path %> 
<% end %> 

感謝

+1

你說你要調用的應用助手的方法? –

回答

4

可以使用link_to_if幫手:

<%= link_to_if current_user, 'All Images', images_path %> 
+0

謝謝! @Mori – edenisn

+1

今天我學習了'link_to_if'幫手,+1: - ) –

+0

同樣,這也是我學到的東西! –