如何仅在我不在该页面上时显示 link?

How can I display the link only if I'm not already on taht page?

我正在使用 Rails 4.2.7。我在我的应用程序

的 header 中有这个 link
<%= link_to 'Edit', edit_users_path %>

如果我已经在 edit_users_path 页面上,我如何不呈现此 link?

直接打电话

<% if current_page?(edit_users_path) %>

您可以将条件放在 erb 片段的末尾

<%= link_to('Edit', edit_users_path) unless current_page? %>