如何在find方法中使用OR运算符?

发布于 2024-10-20 15:09:27 字数 211 浏览 3 评论 0原文

我如何使用这样的东西:

@comments = @company.comments.where(:approved => true).or(:ip => request.remote_ip).all

我应该安装任何特定的gem来执行此操作吗?

我使用rails 3.0.4和mysql2。

谢谢。

how could I use something like this:

@comments = @company.comments.where(:approved => true).or(:ip => request.remote_ip).all

Should I have to install any specific gem for doing this?

I using rails 3.0.4 and mysql2.

Thanks.

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

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

发布评论

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

评论(1

情深缘浅 2024-10-27 15:09:27

请参阅文档中的“条件”部分,其中解释了在的条件。您的查询将写为:

@comments = @company.comments.where('approved = ? OR ip = ?', true, request.remote_ip).all

See the "Conditions" section in the documentation, where it explains using multiple parameters in the conditions. Your query would be written:

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