每当我尝试导航到this link时, 它不会改变这种观点。它只是继续显示根路径。
请有人指出我做错了什么。
class StaticPagesController < ApplicationController
def home
end
def help
end
end
class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
def hello
render html: "hello, world!"
end
end
Rails.application.routes.draw do
get 'static_pages/home'
get 'static_pages/help'
root 'application#hello'
end
答案 0 :(得分:1)
尝试指定相关的控制器,完成后没有理由不执行以下操作:
Rails.application.routes.draw do
root 'application#hello'
get 'static_pages/home', to: 'static_pages#home'
get 'static_pages/help', to: 'static_pages#help'
end
我不知道是否每个人都这样做,但我似乎更愿意把根放在上面。