gpt4 book ai didi

ruby-on-rails-3 - 查询中是否有 ActiveRecord 对象?

转载 作者:行者123 更新时间:2023-12-03 00:20:29 26 4
gpt4 key购买 nike

这样写是否更简洁:

current_user.products.where(:product_id => product.id).present?

rails 有类似的东西吗?

current_user.products.has? product

我知道我能做到:

current_user.products.include? product

...但这会加载所有产品。我正在尝试从中得到一个智能查询。

最佳答案

您可以使用 exists? 方法。喜欢:

current_user.products.exists?(product.id)

可以看看 Active Record Query Interface GuideAPI .

关于ruby-on-rails-3 - 查询中是否有 ActiveRecord 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7732411/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com