可以在ApplicationController内部以及扩展它的其他类。它是在应用程序启动后还是在调用控制器后立即执行的?它的用途是什么?
答案 0 :(得分:0)
控制器中的index
方法用于返回模型集合。例如,index
中的PostsController
方法应返回Post
个模型的集合。
您通常不会在ApplicationController中声明此方法,而是针对您允许访问的资源创建一个特定的方法
class PostsController < ApplicationController
def index
@posts = Post.all
end
end