我有一个带有name属性的Adult模型。
如果用户已登录,我希望Adult.name仅返回名字。
有没有办法让帮助器绑定到您可以指定Adult.helper.name的模型?
或者至少将帮助器命名为模型?
答案 0 :(得分:11)
只需在模型中明确包含帮助程序
# app/helpers/adults_helper.rb
module AdultsHelper
def say_hello
"hello, world!"
end
end
# app/models/adult.rb
class Adult < ActiveRecord::Base
include AdultsHelper
end
在控制台中测试
$ script/console
>> a = Adult.new
# => #<Adult id:...>
>> a.say_hello
# => "hello, world!"
答案 1 :(得分:2)
在您的Adult模型中,您可以添加
def name
self.first_name
end
所以当你找到一个成人时,比如
a = Adult.last
puts a.name #will print a.first_name
好吧,为了更好的解释..粘贴一些代码!