helperの履歴

URL分岐

*_helper.rbに
def is_match?(controller,action)
params[:controller] == controller && params[:action] == action
end
とかいて
rhtmlに
<% if is_match?("community","list") %>
と書くと
controllerがcommunityでactionがlistの時だけtrueを返す