为什么 ARel 查询返回为 ActiveRecord::Relation 类而不是父类?

发布于 2024-10-04 05:36:21 字数 441 浏览 2 评论 0原文

我有一个类:

class Technician < ActiveRecord::Base  
  scope :named, lambda {|name| where(["first_name LIKE ?", "%#{name}%"])}  
end  

在rails控制台中,当我执行以下查询时:

technician = Technician.named("john")  
technician.class => ActiveRecord::Relation and not Technician  

这很重要,因为当我尝试访问类属性时出现无方法错误:

technician.id => no method error  

我做错了什么?

I have a class:

class Technician < ActiveRecord::Base  
  scope :named, lambda {|name| where(["first_name LIKE ?", "%#{name}%"])}  
end  

In rails console, when I do the following query:

technician = Technician.named("john")  
technician.class => ActiveRecord::Relation and not Technician  

this matters because I get a no method error when I try to access the class attributes:

technician.id => no method error  

what am I doing wrong?

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

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

发布评论

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

评论(1

给妤﹃绝世温柔 2024-10-11 05:36:21

Arel 返回ActiveRecord::Relation,这样它就可以将执行推迟到最后一刻,并提供更好的可组合性。

Technician.named("john").first 而不是 Technician.named("john") 来获取 technician

Arel returns ActiveRecord::Relation so that it can defer the execution to the last moment and provide better composability.

Technician.named("john").first instead of Technician.named("john") to get the technician.

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