respond_to的解释

DOC中有一段话这么解释respond_to的:
“Rails determines the desired response format from the HTTP Accept header submitted by the client”

  def index
    @people = Person.find(:all)

    respond_to do |format|
      format.html
      format.xml { render ml => @people.to_xml }
    end
  end


在《跨越边界: REST on Rails》中(http://www-128.ibm.com/developerworks/cn/java/j-cb08016/index.html),
Bruce Tate是这样说的:

它的工作方式是这样的:

1、respond_to 方法接受单个代码块,并传递一个实例变量(标为 format)到代码块。
wants 对每个可能的类型都有一个方法。控制器可以为控制器期望的每个类型指定一个代码块。
2、如果方法名称与 HTTP Accept 头中的类型匹配,index方法执行对应的代码块。
3、如果没有指定代码块(例如 format.html),Rails 就执行默认动作(在这个示例中,呈现 app/views/people/index.rhtml)。

你可能感兴趣的:(html,xml,REST,IBM,Rails)