分配关联记录而不使用 Eval (Rails 2.x)

发布于 2024-11-30 23:16:09 字数 314 浏览 0 评论 0原文

我的代码看起来像这个

  #     record[field_name] = get_children(field_name)
  eval "record.#{field_name} = get_children(field_name)"

record 是一个 ActiveRecord 子类,并且相关字段是一个 has_a 关系。注释行不起作用(尽管看起来有效,但分配并未发生)。

如果没有eval,我该如何做到这一点?

My code looks like this

  #     record[field_name] = get_children(field_name)
  eval "record.#{field_name} = get_children(field_name)"

record is an ActiveRecord subclass, and the field in question is a has_a relationship. The commented line does not work (though it seems to, but the assign does not take place).

How can I do this without eval?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天生の放荡 2024-12-07 23:16:09

可能有一种更 Railsy 的方法来做到这一点,但至少您可以通过使用 send 消除 eval (来自 Object),所有 Object 实例都具有:

record.send "#{field_name}=", get_children(field_name)

There may be a more Railsy way to do this, but at least you can eliminate the eval by using send (from Object), which all Object instances have:

record.send "#{field_name}=", get_children(field_name)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文