class TopicController < ApplicationController
def index
@topics = Topic.all
end
end
index action 取出了 @topics,你不需要调用 render 方法,然后 Rails 就知道需要使用 app/views/topics/index.html.erb 这个模板去渲染。
比如 rails g controller Topics
会生成 TopicsController, TopicsHelper, topics 目录,再比如单复数问题!