我真的是Ruby on Rails中的新手... 我試圖在我的項目中創建另一個頁面的鏈接,其中列出了屬於escuela的帖子。在Ruby on Rails中創建鏈接
這是我做過什麼:
在posts_controller.rb我寫道:
def postesc
@posts = Post.where(:escuela_id => params[:id])
respond_to do |format|
format.html # postesc.html.erb
format.json { render json: @posts }
end
end
在配置/ routes.rb中我寫道:
match 'postesc' => 'posts#postesc'
鑑於/ escuelas/listaesc .html.erb我寫了鏈接:
<%= link_to "Escuelas", :controller => "posts", :action => "postesc" %>
並在視圖/ escuelas/postesc.html.erb我想列出匹配的帖子。 但是這個頁面只顯示空白,只有佈局。
請幫忙嗎?