gpt4 book ai didi

pg-search - 如何去除查询结果的排名

转载 作者:行者123 更新时间:2023-12-04 04:55:24 26 4
gpt4 key购买 nike

我的 story.rb 模型有以下 pg_search 范围:

  pg_search_scope   :with_text, 
:against => :title,
:using => { :tsearch => { :dictionary => "english" }},
:associated_against => { :posts => :contents }

我希望查询返回结果而忽略任何排名(我只关心故事上次更新顺序 DESC 的日期)。我知道对于大多数查看它的人来说,这是一个简单的问题,但是如何关闭 pg_search 中的排名顺序?

最佳答案

我是 pg_search 的作者。

你可以做这样的事情,它使用 ActiveRecord::QueryMethods#reorder

MyModel.with_text("foo").reorder("updated_at DESC")

关于pg-search - 如何去除查询结果的排名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14286207/

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