ruby file_controller2.rb

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby file_controller2.rb相关的知识,希望对你有一定的参考价值。

resources :posts do
  resources :files, controller: 'posts/files'
end

resources :files
# posts/files_controller.rb
class Posts::FilesController < ApplicationController
  def index
    @posts = Post.find(params[:post_id])
    @files = @post.files
  end
  
  ...
end
# files_controller.rb
class FilesController < ApplicationController
  def index
    @files = Files.all
  end
  
  ...
end

以上是关于ruby file_controller2.rb的主要内容,如果未能解决你的问题,请参考以下文章