ruby-on-rails-2 – 向activerecord对象添加额外的运行时间

前端之家收集整理的这篇文章主要介绍了ruby-on-rails-2 – 向activerecord对象添加额外的运行时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个代理模型,它从基础数据库表中获取它的属性.然而,对于一个特定的控制器动作,我想在将代理记录传递给视图之前向代理记录添加一些“临时”属性.

这是可能的吗?

所有的帮助感激不尽.

Purvez

解决方法

是的,你可以在飞行中扩展你的模型.例如:
# GET /agents
# GET /agents.xml
def index
  @agents = Agent.all

  # Here we modify the particular models in the @agents array.

  @agents.each do |agent|
    agent.class_eval do
      attr_accessor :foo
      attr_accessor :bar
    end
  end

  # And then we can then use "foo" and "bar" as extra attributes

  @agents.each do |agent|
    agent.foo = 4
    agent.bar = Time.now
  end

  respond_to do |format|
    format.html # index.html.erb
    format.xml  { render :xml => @agents}
  end
end

在视图代码中,您可以使用其他属性来引用foo和bar.

原文链接:https://www.f2er.com/ruby/272823.html

猜你在找的Ruby相关文章