我有一個Rails應用程序,其中我使用Thinking-Sphinx進行搜索,ActsAsTaggableOn進行標記。我希望能夠在我的搜索查詢中包含當前選定的標籤。我嘗試了以下,但沒有得到它的工作。 在我的控制器: def show
@team_tags = @team.ideas.tag_counts_on(:tags)
if params[:tag]
@id
我有一個產品&價格模型,其中: class Product < AR::Base
has_many :prices # there are several types of prices, e.g. for guests, users et.c.
我想指數和價格的產品價值排序,屬於該產品和詳細的價格類型。 ThinkingSphinx::Index.define :product,
我有Ruby on Rails 4項目與Thinking Sphinx 3。我有幾個型號: class Investment < ActiveRecord::Base
has_many :investment_parts
end
class InvestmentPart < ActiveRecord::Base
belongs_to :investment
ha