- 浏览: 59944 次
- 性别:
- 来自: 深圳
最新评论
对 于alias, alias_method, alias_method_chain的深入理解是有益的,因为rails3的源码里很多地方使用了alias_method_chain的魔法。 有人评论说alias_method_chain使用的过多不好,具体怎么不好,是后话了,这篇文章集中在理解这3个方法上面。
如果想转载本文,请注明出处,谢谢!请尊重别人的劳动成果,为构建丰富web原创内容做贡献!
1. alias
Ruby里的关键字,用于定义方法或者全局变量的别名。 例子:
class A
def m1
puts "m1"
end
alias m2 m1
end
=> nil
a = A.new
=> #<A:0xb7ef5234>
a.m1
m1
=> nil
a.m2
m1
=> nil
在使用的时候,注意原有的方法名在最后位置,用空格分开。
2. alias_method
作用和alias差不多,是Module的一个私有实例方法,只能用于给方法起别名,并且参数只能是字符串或者符号(alias后面跟的直接是方法名,不是字符串也不是符号)。例子:
class B
def b
p "b"
end
alias_method :c, :b
end
=> B
b = B.new
=> #<B:0xb7ee75bc>
b.c
"b"
=> nil
b.b
"b"
=> nil
注意,alias_method的参数必须是字符串或者是符号,并且用逗号分隔。
这样也可以:
module A
def b
p "b"
end
alias_method 'c', 'b'
end
class B
include A
end
#=> B
b = B.new
#=> #<B:0xb7ee75bc>
b.c
#"b"
#=> nil
b.b
#"b"
#=> nil
3. alias_method_chain
是ActiveSupport的一个公有实例方法。同样接受两个参数,可以是符号,也可以是字符串,但要注意一下第1个参数才是原始方法(alias_method的第2个参数是原始方法)。例子:
class A
def m1
puts 'm1'
end
def m1_with_m2
puts "do something befor m1"
m1_without_m2
puts "do something after m2"
end
alias_method_chain :m1, :m2
end
=> A
a = A.new
=> #<A:0xb7bd9820>
a.m1
do something befor m1
m1
do something after m2
=> nil
上面的代码用alias或者alias_method也能完成:
class A
def m1
puts 'm1'
end
alias m1_without_m2 m1
def m1_with_m2
puts 'do something else'
m1_without_m2
end
alias m1 m1_with_m2
end
那么其原理也一目了然了:
a = A.new
a.m1
当调用m1的时候, m1_with_m2会执行, 在puts "do something befor m1"之后,执行m1_without_m2,这个时候是执行了真正的m1方法。 这样就形成了一个类似于AOP的行为。
也可以说,对外把m1方法隐藏起来了,对类外部,实际上把m1_with_m2改头换面已经成为了另一个方法,只是我们不知道而已,因为它还叫m1.
再来看看alias_method_chain的源码:
def alias_method_chain(target, feature)
# Strip out punctuation on predicates or bang methods since
# e.g. target?_without_feature is not a valid method name.
aliased_target, punctuation = target.to_s.sub(/([?!=])$/, ''), $1
yield(aliased_target, punctuation) if block_given?
with_method, without_method = "#{aliased_target}_with_#{feature}#{punctuation}", "#{aliased_target}_without_#{feature}#{punctuation}"
alias_method without_method, target
alias_method target, with_method
case
when public_method_defined?(without_method)
public target
when protected_method_defined?(without_method)
protected target
when private_method_defined?(without_method)
private target
end
end
一个道理。
更实际的例子:
在一些rails比较老的系统里,搜索功能的日期选择可能会用到date_select,这个方法会生成类似于这样的页面元素:
search_form[start_from(1i)]年
search_form[start_from(2i)]月
search_form[start_from(3i)]日
把这样的参数传回去,就无法查询到对应的日期。这个时候我们需要在后台得到查询条件之后来处理日期,比如:
get_conditions 这个方法假如是得到页面查询条件的,它返回一个数组,这个时候我们可以定义:
def get_conditions_with_handle_date
puts "你可以在get_conditions方法执行前干点别的,如果你愿意"
get_conditions_without_handle_date
puts "get_conditions执行完了,我们可以在其后干点别的,比如说处理日期"
conditions.reject!{|condition|condition[0] =~ /\([1-3]i\)/} # 把条件数组里的1i,2i,3i之类的去掉。
conditions << ["? <= #{@model.table_name}.created_at", @search.start_from] if @search.start_from #给搜索对象里添加正确的查询日期条件
conditions << ["#{@model.table_name}.created_at < ?", @search.end_to + 1.day] if @search.end_to #给搜索对象里添加正确的查询日期条件
end
#然后实施魔法
alias_method_chain :get_conditions, :handle_date
这样我们就搞定了。
本文出自 “{ :Alex Space => &..” 博客,请务必保留此出处http://blackanger.blog.51cto.com/140924/355102
如果想转载本文,请注明出处,谢谢!请尊重别人的劳动成果,为构建丰富web原创内容做贡献!
1. alias
Ruby里的关键字,用于定义方法或者全局变量的别名。 例子:
class A
def m1
puts "m1"
end
alias m2 m1
end
=> nil
a = A.new
=> #<A:0xb7ef5234>
a.m1
m1
=> nil
a.m2
m1
=> nil
在使用的时候,注意原有的方法名在最后位置,用空格分开。
2. alias_method
作用和alias差不多,是Module的一个私有实例方法,只能用于给方法起别名,并且参数只能是字符串或者符号(alias后面跟的直接是方法名,不是字符串也不是符号)。例子:
class B
def b
p "b"
end
alias_method :c, :b
end
=> B
b = B.new
=> #<B:0xb7ee75bc>
b.c
"b"
=> nil
b.b
"b"
=> nil
注意,alias_method的参数必须是字符串或者是符号,并且用逗号分隔。
这样也可以:
module A
def b
p "b"
end
alias_method 'c', 'b'
end
class B
include A
end
#=> B
b = B.new
#=> #<B:0xb7ee75bc>
b.c
#"b"
#=> nil
b.b
#"b"
#=> nil
3. alias_method_chain
是ActiveSupport的一个公有实例方法。同样接受两个参数,可以是符号,也可以是字符串,但要注意一下第1个参数才是原始方法(alias_method的第2个参数是原始方法)。例子:
class A
def m1
puts 'm1'
end
def m1_with_m2
puts "do something befor m1"
m1_without_m2
puts "do something after m2"
end
alias_method_chain :m1, :m2
end
=> A
a = A.new
=> #<A:0xb7bd9820>
a.m1
do something befor m1
m1
do something after m2
=> nil
上面的代码用alias或者alias_method也能完成:
class A
def m1
puts 'm1'
end
alias m1_without_m2 m1
def m1_with_m2
puts 'do something else'
m1_without_m2
end
alias m1 m1_with_m2
end
那么其原理也一目了然了:
a = A.new
a.m1
当调用m1的时候, m1_with_m2会执行, 在puts "do something befor m1"之后,执行m1_without_m2,这个时候是执行了真正的m1方法。 这样就形成了一个类似于AOP的行为。
也可以说,对外把m1方法隐藏起来了,对类外部,实际上把m1_with_m2改头换面已经成为了另一个方法,只是我们不知道而已,因为它还叫m1.
再来看看alias_method_chain的源码:
def alias_method_chain(target, feature)
# Strip out punctuation on predicates or bang methods since
# e.g. target?_without_feature is not a valid method name.
aliased_target, punctuation = target.to_s.sub(/([?!=])$/, ''), $1
yield(aliased_target, punctuation) if block_given?
with_method, without_method = "#{aliased_target}_with_#{feature}#{punctuation}", "#{aliased_target}_without_#{feature}#{punctuation}"
alias_method without_method, target
alias_method target, with_method
case
when public_method_defined?(without_method)
public target
when protected_method_defined?(without_method)
protected target
when private_method_defined?(without_method)
private target
end
end
一个道理。
更实际的例子:
在一些rails比较老的系统里,搜索功能的日期选择可能会用到date_select,这个方法会生成类似于这样的页面元素:
search_form[start_from(1i)]年
search_form[start_from(2i)]月
search_form[start_from(3i)]日
把这样的参数传回去,就无法查询到对应的日期。这个时候我们需要在后台得到查询条件之后来处理日期,比如:
get_conditions 这个方法假如是得到页面查询条件的,它返回一个数组,这个时候我们可以定义:
def get_conditions_with_handle_date
puts "你可以在get_conditions方法执行前干点别的,如果你愿意"
get_conditions_without_handle_date
puts "get_conditions执行完了,我们可以在其后干点别的,比如说处理日期"
conditions.reject!{|condition|condition[0] =~ /\([1-3]i\)/} # 把条件数组里的1i,2i,3i之类的去掉。
conditions << ["? <= #{@model.table_name}.created_at", @search.start_from] if @search.start_from #给搜索对象里添加正确的查询日期条件
conditions << ["#{@model.table_name}.created_at < ?", @search.end_to + 1.day] if @search.end_to #给搜索对象里添加正确的查询日期条件
end
#然后实施魔法
alias_method_chain :get_conditions, :handle_date
这样我们就搞定了。
本文出自 “{ :Alex Space => &..” 博客,请务必保留此出处http://blackanger.blog.51cto.com/140924/355102
发表评论
-
Diaspora 功能特性列表
2013-05-10 14:25 1018Diaspora Function Features List ... -
rails scaffold getting the column list from existing table
2011-09-23 10:02 913之前一直找这个问题的解决办法,但一直没找到,在g上看到了一个人 ... -
ruby语法-传值
2011-08-23 16:49 1051=begin def test1(*a) p a.firs ... -
Rails 3 用 JQuery 替代 Prototype
2011-07-28 22:48 11311.进入到工程目录中修改Gemfile文件,加入如下行: g ... -
Generate a list of Rails controllers and methods
2011-07-01 17:40 852列出项目中的controler和他对应的actions: @c ... -
Ubuntu手动安装JDK
2011-05-20 16:03 569Ubuntu手动安装JDK 安装前可以查看一下jdk版本,进 ... -
bundler
2011-04-25 12:12 829Rails3里多了个Bundler工具。 它是一个Librar ... -
研究小计1
2011-04-20 00:55 660有时候对一些基础的东西,不知道它的边界在哪里,其实做些小实验就 ... -
RubyGem version error: rack(1.0.0 not ~> 1.0.1)
2011-04-17 00:09 1357I have this error when I try to ... -
rubyonrails Restful Authentication 插件
2011-04-17 00:01 812restful_authentication是Rails的一个 ... -
XP.CMD命令大全
2011-04-17 00:00 636有关某个命令的详细信 ... -
几个有用的方法
2011-04-16 23:58 587hash.invert Returns a new hash ... -
Firefox键盘快捷方式
2011-04-16 23:55 1215Firefox键盘快捷方式 键盘快捷健 下面是 Mozil ... -
Ubuntu手动安装JDK
2011-04-16 23:53 730Ubuntu手动安装JDK 安装前可以查看一下jdk版本,进 ... -
字符转时间格式转换成时间对象
2011-04-16 23:52 761Time.parse("Wed, 23 Jan 20 ... -
使用Rails时遇到了服务器启动问题 script/server:3
2011-04-16 23:47 1287境 Windows Vista Home Premium c ... -
DoDirectPayment
2011-04-16 23:44 998DoDirectPayment 1. DoDirectPay ... -
Rails异常处理
2011-04-16 23:43 962异常处理是开发过程中 ... -
ruby和rails中的回调函数
2011-04-16 23:41 1882Ruby中Class,Object,Module这三个类定义了 ... -
Rails3:使用bundler管理gems
2011-04-16 23:39 1393bundler是一套为了 Rails3 所打造的全新 Gem ...
相关推荐
从一开始就使用#alias_method_chain在Ruby on Rails中几乎可以实现这种方法。 但是,该方法以分层分解而闻名。 Yehuda Katz写了一系列博客文章,提倡使用Module和#super更清洁的方法。 这种方法效果很好,但仅在...
1. **alias_method** 和 **alias_method_chain**:这是过去常见的方法,通过别名来实现方法调用前后的额外操作。然而,这种方式需要手动管理别名,而且在Ruby 2.3之后,`alias_method_chain`不再推荐使用。 2. 使用...
`result`节点的`name`和`type`属性分别指定结果类型和跳转策略,`type`常见的有`dispatcher`(用于转向JSP)和`chain`(用于转向另一个Action)。 3. **验证框架**: Struts2提供了内置的验证机制。在需要验证的...
- **更好的组织代码**:不同的组件负责不同的功能,使代码更易于理解和管理。 - **便于团队协作**:由于每个部分都有明确的职责,团队成员可以专注于自己负责的部分,提高开发效率。 - **易于复用**:由于组件之间的...
<alias name="dataSource" alias="ds"/> ``` 这样就可以使用`ds`代替`dataSource`来引用数据源对象。 **3.3 SQL配置文件** IBATIS使用SQL映射文件来定义SQL语句及其结果集的映射关系。 - **配置示例**: ```...
<interceptor-ref name="alias" /> <interceptor-ref name="chain" /> <action name="home" class="com.example.HomeAction" method="execute"> ...
了解这些单词的含义可以帮助开发者更好地理解 Java 语言,并提高编程效率。 Abstract:抽象的,指的是不依赖于具体实现的代码。 Abstract Base Class (ABC):抽象基类,是一种特殊的基类,它定义了一些抽象方法,...
Computer Networking: A Top-Down Approach, 6th Edition Solutions to Review Questions and Problems Version Date: May 2012 ...This document contains the solutions to review questions and problems for...
卷 文档 的文件夹 PATH 列表 卷序列号为 000C-BB91 E:. │ config.properties │ Dao.java │ GeneratorDemo.java │ hibernate.cfg.xml │ HibernateDaoImpl.java │ HibernateSessionFactory.java ...