从Michael Hartl的书中,“/ static_pages / help”路线不会显示

时间:2018-03-05 11:11:59

标签: ruby-on-rails railstutorial.org

每当我尝试导航到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

1 个答案:

答案 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

我不知道是否每个人都这样做,但我似乎更愿意把根放在上面。