本文简要介绍ruby语言中 ERB::DefMethod模块
的用法。
用于将 eRuby 脚本定义为实例方法的实用程序模块。
示例
例子.rhtml:
<% for item in @items %> <b><%= item %></b> <% end %>
例子.rb:
require 'erb'
class MyClass
extend ERB::DefMethod
def_erb_method('render()', 'example.rhtml')
def initialize(items)
@items = items
end
end
print MyClass.new([10,20,30]).render()
结果:
<b>10</b> <b>20</b> <b>30</b>
相关用法
- Ruby Deflate.new用法及代码示例
- Ruby Deflate.deflate用法及代码示例
- Ruby DependencyState.pop_possibility_state用法及代码示例
- Ruby DependencyGraph.==用法及代码示例
- Ruby DependencyGraph.vertices用法及代码示例
- Ruby Delegator类用法及代码示例
- Ruby Deprecate模块用法及代码示例
- Ruby DependencyGraph.tsort用法及代码示例
- Ruby Date.valid_civil?用法及代码示例
- Ruby DateTime jisx0301()用法及代码示例
- Ruby Date cwday()用法及代码示例
- Ruby Date ctime()用法及代码示例
- Ruby Date.gregorian?用法及代码示例
- Ruby DRb.regist_server用法及代码示例
- Ruby DH.public_key用法及代码示例
- Ruby Date asctime()用法及代码示例
- Ruby DateTime类用法及代码示例
- Ruby DateTime.hour用法及代码示例
- Ruby DateTime.jd用法及代码示例
- Ruby DateTime.zone用法及代码示例
- Ruby DateTime ordinal()用法及代码示例
- Ruby DateTime.second用法及代码示例
- Ruby Date.strftime用法及代码示例
- Ruby Digest.update用法及代码示例
- Ruby DSA.export用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 DefMethod模块。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。