如何在 Ruby 中为实例的属性定义方法?
假设我们有一个名为 的类HtmlSnippet
,它扩展了 Rails 的 ActiveRecord::Base 并有一个属性content
。而且,我想replace_url_to_anchor_tag!
为它定义一个方法并以下列方式调用它;
html_snippet = HtmlSnippet.find(1)
html_snippet.content = "Link to http://stackoverflow.com"
html_snippet.content.replace_url_to_anchor_tag!
# => "Link to <a href='http://stackoverflow.com'>http://stackoverflow.com</a>"
# app/models/html_snippet.rb
class HtmlSnippet < ActiveRecord::Base
# I expected this bit to do what I want but not
class << @content
def replace_url_to_anchor_tag!
matching = self.match(/(https?:\/\/[\S]+)/)
"<a href='#{matching[0]}'/>#{matching[0]}</a>"
end
end
end
作为content
String 类的实例,重新定义 String 类是一种选择。但我不想这样做,因为它会覆盖所有 String 实例的行为;
class HtmlSnippet < ActiveRecord::Base
class String
def replace_url_to_anchor_tag!
...
end
end
end
请问有什么建议吗?