我需要一些有关虚拟属性的帮助。此代码工作正常,但我如何在插件中使用它。目标是将此方法添加到使用该插件的所有类中。
class Article < ActiveRecord::Base
attr_accessor :title, :permalink
def title
if @title
@title
elsif self.page
self.page.title
else
""
end
end
def permalink
if @permalink
@permalink
elsif self.page
self.page.permalink
else
""
end
end
end
谢谢