如何返回子对象?

发布于 2024-08-29 03:48:12 字数 290 浏览 6 评论 0原文

我的想法是一个简单的问题。这是我的代码:

class Fruit < ActiveRecord::Base
end

class Apple < Fruit
end

class Kiwi < Fruit
end

假设我正确设置了所有 STI,并且表中有多种类型的 Apple 和 Kiwi 记录。从这里...

fruits = Fruit.find(:all)

...我如何从水果数组中返回仅包含苹果的数组?

I have -- what I think -- is a simple question. Here's my code:

class Fruit < ActiveRecord::Base
end

class Apple < Fruit
end

class Kiwi < Fruit
end

Assume that I have all the STI setup correctly, and there are multiple types of Apple and Kiwi records in the table. From here...

fruits = Fruit.find(:all)

...how do I return an array of just Apples from the fruits array?

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

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

发布评论

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

评论(1

瑾兮 2024-09-05 03:48:12

如果它们只是普通对象,您也会这样做:

fruits.select {|fruit| fruit.is_a?(Apple) }

STI 使用 type 字段来跟踪子模型,因此您也可以这样做

fruits.select {|fruit| fruit.type == "Apple" }

如果您只想从数据库中获取苹果,就做

Apple.find(:all)

The same way you would do it if they were just normal objects:

fruits.select {|fruit| fruit.is_a?(Apple) }

STI uses the type field to keep track of the submodel, so you could also do

fruits.select {|fruit| fruit.type == "Apple" }

If you want to get only the apples from the database, just do

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