私はいくつかのリンクを持っています:
<%= link_to "", '../captures#photos' %>
<%= link_to "", '../captures#videos' %>
<%= link_to "", '../captures#audios' %>
それらはcaptures_controller.rbに渡されます
コントローラーでインデックスに登録されないようにパラメーター(写真/ビデオ/オーディオ)を解析するにはどうすればよいですか?
現在、コントローラーには次のものがあります。
def photos
logger.debug 'photos'
end
def videos
logger.debug 'videos'
end
def audios
logger.debug 'audios'
end
def index
logger.debug 'index'
end
しかし、次のすべてのURLは「インデックス」を記録しますか?
- .../キャプチャ
- ... / captions#photos
- ... / captions#videos
- ... / captions#audios
ルート.rb:
# these were when I was trying the links without the hashes
match 'captures/photos' => 'captures#photos'
match 'captures/videos' => 'captures#videos'
match 'captures/audios' => 'captures#audios'
resources :captures
resources :photos
resources :audios
resources :videos