私の link_to は次のようになります。
<%= link_to image_tag(user_likes_selection.page_picture, :image_id =>
user_likes_selection.id, :controller => :preferences_controller,
:action => :checked_average_with_profile) %>
私のコントローラー、preferences_controller には、checked_average_with_profile というメソッドがあります。これは、私が知る限り、画像をクリックしても呼び出されません。
link_to から生成される html コードは次のとおりです。
<img>
<a href="/preferences"><img action="checked_average_with_profile" alt="Soul_surfer_film"
controller="preferences_controller" height="70%" image_id="3254"
src="/assets/soul_surfer_film.jpg" width="70%" /></a>
</img>
画像がクリックされたときにコントローラ コードが実行されないのはなぜですか?