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的主要内容,如果未能解决你的问题,请参考以下文章

ruby sonic_pi_2.rb

ruby sieve_1_prime_2.rb

ruby test_not_null_database_foreign_keys_with_rspec_2.rb

WebApi实现Ajax模拟Multipart/form-data方式多文件上传

JetBrains RubyMine 3.2.4 调试器不工作

使用 git 查看对特定文件的更改