rails里的filter
发布时间:2020-12-15 07:08:11 所属栏目:百科 来源:网络整理
导读:before_fil ter after_fil ter around_fil ter 设置fil ter的参数可以为一个方法symbol :method_a,一个block 或者一个类,该类的静态方法self.fil ter()会被调用 默认fil ter作用于当前类的所有act ion方法和子类的act ion方法,:on ly 和 :except用来在contro
before_fil ter after_fil ter around_fil ter 设置fil ter的参数可以为一个方法symbol :method_a,一个block 或者一个类,该类的静态方法self.fil ter()会被调用 默认fil ter作用于当前类的所有act ion方法和子类的act ion方法,:on ly 和 :except用来在controller中包含或者排除act ion before_fil ter 和after_fil ter默认是添加fil ter到fil ter chains最后,如果要添加到最前使用prepend_before_fil ter() 和 prepend_after_fil ter() before_fil ter 主要用来作验证 after_fil ter 主要用来控制内容(压缩,替换) around_fil ter 可以用来记录时间 设置参数必须为一个类,该类有before(controller)和after(controller)两个方法 around_fil ter XXXFilter.new around_fil ter的添加是嵌套的,around_fil ter A.new,B.new的结果如下 A.before B.before act ion..... B.after A.after 注意顺序和前面两个fil ter不一样 fil ter 在继承中的关系 子controller会执行所有父controller的fil ter,但是父不会执行子的fil ter verification verify指令可以看做一个专门抽出来的fil ter功能,当verify失败,当前act ion就不会执行了 class BlogController < ApplicationController verify :on ly => :post_comment,:session => :user_id,:add_flash => { :note => "You must log in to comment"},:redirect_to => :index #.... end 支持的参数如下启用条件 :on ly=>:name or [:name,...] :except=>name or [:name,...] 测试条件 :flash=>:key or [:key,...] flash中必须包含某些key :method=>:symbol or [:symbol,...] 请求必须是某些http 方法 :session=>:key or [:key,...] session中必须包含某些key 执行操作 :add_flash=>hash 把传入hash的值对写入flash中 :redirect_to=>params 跳转页面。
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |