Rails 控制台获取全部

发布于 2025-01-01 07:01:37 字数 134 浏览 1 评论 0原文

我有一个关于 Rails Console 的非常简单的问题,如果我想获得一个帐户,我会这样做: y Account.find_by_zipcode("XXXXX")

这只会返回一个帐户,如果我想获取所有具有该邮政编码的帐户该怎么办?多谢。

I have a very simple question about rails console, if I want to get a single account I do this:
y Account.find_by_zipcode("XXXXX")

This returns me only one account, what if I want to get all the accounts which have that zipcode. Thanks a lot.

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

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

发布评论

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

评论(4

御弟哥哥 2025-01-08 07:01:37

您是否尝试过Account.find_all_by_zipcode('XXXXX')

Have you tried Account.find_all_by_zipcode('XXXXX')?

初见终念 2025-01-08 07:01:37
Account.where(:zipcode => "XXXXX")

这将返回一个 Account 对象数组。

Account.where(:zipcode => "XXXXX")

This returns an array of Account objects.

月亮是我掰弯的 2025-01-08 07:01:37
Account.where(zipcode: "XXXXX")

是要走的路。 “find_all”在 Rails 4 中已被弃用

Account.where(zipcode: "XXXXX")

is the way to go. "find_all" is depreciated in Rails 4

回忆凄美了谁 2025-01-08 07:01:37

Account.where(:zipcode => 'XXXXX') 会给你你想要的。

Account.where(:zipcode => 'XXXXX') will give you what you want.

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