微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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.jb51.cc/ruby/272823.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐