使用scope_builder在Active Record模型search()方法中有条件地构建命名范围

发布于 2024-07-09 13:41:36 字数 569 浏览 6 评论 0原文

我正在使用 Ryan Bates 优秀的 scope_builder 有条件地构建一个新的命名范围在 Active Record 模型的 search() 方法中使用。

示例文档显示您可以执行如下操作:

  # in product model
  def self.search(options)
    scope_builder do |builder|
      builder.released.visible
      builder.cheap if options[:cheap]
    end
  end

但是,当我在模型中包含上述代码的相关版本并调用 search() 并传递一些选项时,我返回的是 ScopeBuilder::Builder 的实例而不是使用我传递的选项执行链接命名范围的结果,这是我所期望的。

我的问题是:如何获取执行构建器(选项)而不是构建器实例的结果?

I'm using Ryan Bates' excellent scope_builder to conditionally build a new named scope to use in a search() method of an Active Record model.

The example documentation shows that you can do something like the following:

  # in product model
  def self.search(options)
    scope_builder do |builder|
      builder.released.visible
      builder.cheap if options[:cheap]
    end
  end

But, when I include the relevant version of the above code in my model and call search() with some options passed, what I get returned is an instance of ScopeBuilder::Builder and not the results of executing the chained named scope with the options I've passed, which is what I would expect.

My question is: How do I get the results of executing builder(options) instead of an instance of the builder?

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

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

发布评论

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

评论(1

云之铃。 2024-07-16 13:41:36

看起来scope_builder块设计来返回scope-builder实例,因此您必须从实例中获取结果。

尝试在实例上使用 .all 来获取结果。 例如:

@results = Product.search().all

来自 他的测试 ,看起来这应该可行(第 47 行:“应该能够在块中建立范围”)。

Looks like the scope_builder block was designed to return the scope-builder instance, so you'll have to get the results from the instance.

Try using .all on the instance to grab the results. For instance something like:

@results = Product.search().all

From his tests, it looks like this should work (line 47: "should be able to build up scope in block").

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