1

我已经为产品模型定义了这样的方面:

product_index.erb

ThinkingSphinx::Index.define :product, :with => :active_record do  
  indexes publish
  indexes name, :sortable => true
  indexes price, :sortable => true
  indexes manufacturer.permalink, :as => :manufacturer, :facet => true
  has manufacturer_id
end

和考虑的方面:

<% @facets.each do |facet, facet_options| %>
<h5><%= facet %></h5>
<ul>
    <% facet_options.each do |option, count| %>
    <li><%= link_to "#{option} (#{count})",
    :params => {facet => option, :page => 1} %></li>
    <% end %>
</ul>

这是为这样的制造商生成方面:

制造商

  • <a href="manufacturer=manufacturer-permalink&page=1">manufacturer-permalink (53)

如何为标题添加自己的名称(例如将制造商替换为品牌)并为链接添加自己的名称(例如将制造商永久链接(53)替换为制造商名称(53)(其中制造商是模型类))

4

1 回答 1

0

我为此目的写了一些东西 - 将外键方面转换为相应的对象。你可以在这里找到代码:https ://gist.github.com/pat/5477820

您需要清楚要迭代哪些方面 - 否则您最终会在 HTML 中列出manufacturer_id 和manufacturers。

在构面搜索查询之后,您的控制器可能会执行以下操作:

FacetExpander.expand @facets, :manufacturer

那么在你看来:

<h5>Manufacturers</h5>
<ul>
  <% @facets[:manufacturers].each do |manufacturer, count| %>
  <li><%= link_to "#{manufacturer.name} (#{count})",
    :params => {:manufacturer_id => manufacturer.id, :page => 1} %></li>
  <% end %>
</ul>
于 2013-04-28T18:17:59.300 回答