ApplicationController类如何在Rails中工作

时间:2014-06-30 08:37:24

标签: ruby-on-rails rest static-pages

在rails中,如果要渲染静态页面,可以使用如下所示的类:

class StaticPagesController < ApplicationController
  def home
  end
  def about
  end
end

ApplicationController如何处理这些函数以生成get请求?函数处理和函数在HTTP谓词之后命名的时间和它们相应的路由之间有什么区别?

0 个答案:

没有答案