1

pg_search のマルチサーチ機能を実装する方法がようやくわかりました。

しかし、適切なネストされたページへのリンクを表示する使用可能な検索ページを作成するのに問題があります。

ネストされたビューにリンクできるように、適切な ID を渡すにはどうすればよいですか。

このlink_toのようなもの

myapp.com/artists/1/albums

これまでのところ、このエラーが発生します(アーティストIDを渡すことができないようです)

No route matches {:controller=>"albums", :artists=>nil}

Rails 初心者 助けてください :)

コントローラー

class ResultsController < ApplicationController

  def index
    @results = PgSearch.multisearch(params[:query]).paginate( :page => params[:page] )
    @artists = PgSearch.multisearch(params[:query]).where(searchable_type: "Artist")
    @albums = PgSearch.multisearch(params[:query]).where(searchable_type: "Album")
  end

end

ビュー

<% if @results.any? %>

<% if @artists.any? %>

      <div class="maintitle">Artists</div>

      <% @results.each do |pg_results| %>
        <% if pg_results.searchable_type == "Artist" %>
          <div class="span3">

            #### How can I link to the Albums index page
            <%= link_to pg_results.searchable.name, 
                artist_albums_path(@artists) %>


          </div>       
        <% end %>
      <% end %>

<% end %>

<% if @albums.any? %> 

    <div class="maintitle">Albums</div>

    <div class="row">
      <% @results.each do |pg_results| %>
        <% if pg_results.searchable_type == "Album" %>

          ####How can I link to the Albums index page
          <%= link_to pg_results.searchable.name,  %>       

      <% end %>
    <% end %>
  </div>

<% end %>

<% end %>

モデル

class Artist < ActiveRecord::Base
  attr_accessible :name

  has_many :albums
  has_many :songs, :through => :albums

  include PgSearch
  multisearchable :against => [:name],
    using: {tsearch: {dictionary: "english"}}

end

class Album < ActiveRecord::Base
  attr_accessible :name, :artist_id

  belongs_to :artist
  has_many :songs

  include PgSearch
  multisearchable :against => [:name],
    using: {tsearch: {dictionary: "english"}}
    associated_against: {artist: [:artist_id, :name]}

end

ルート

Music::Application.routes.draw do

resources :artist do
  resources :albums
end

resources :results

end

スキーマ

create_table "pg_search_documents", :force => true do |t|
  t.text     "content"
  t.integer  "searchable_id"
  t.string   "searchable_type"
  t.datetime "created_at",      :null => false
  t.datetime "updated_at",      :null => false
end
4

1 に答える 1