控制器(基本)
class UsersController < ApplicationController
def index
respond_to do |format|
format.html { render html: "Hello World" }
end
end
end
这是一个基本控制器,添加了以下路由(在 routes.rb 中):
resources :users, only: [:index]
当你访问 URL /users
时,将在网页中显示 Hello World
消息