美文网首页
respond_to和format的含义

respond_to和format的含义

作者: wylszz | 来源:发表于2016-11-22 14:13 被阅读0次

    respond_to是根据请求的头信息来判断来调用那种block,实现方法类似

    def xml
        yield if self.accept_header == "text/xml"
      end
    
      def html
        yield if self.accept_header == "text/html"
      end
    
      def json
        yield if self.accept_header == "text/json"
      end
    

    format实际是一个http请求包装程序.

    相关文章

      网友评论

          本文标题:respond_to和format的含义

          本文链接:https://www.haomeiwen.com/subject/bwippttx.html