3

activescaffoldリストページでの通常の検索が機能していません。

フィールドID|を持つListLocationsテーブルがあります。list_id | wiki_location_id。私は次のモデル関係を持っています

       class List < ActiveRecord::Base
         validates_presence_of :name
         has_many :list_locations, :dependent => :destroy
       end


       class WikiLocation < ActiveRecord::Base
         has_many :list_locations, :dependent => :destroy
       end

       class ListLocation < ActiveRecord::Base
         belongs_to :list
         belongs_to :wiki_location

         def wiki_location_title
           WikiLocation.find(wiki_location_id).title if wiki_location_id
         end

         def wiki_location_title= (title)
           wiki_location = WikiLocation.find_by_title(title)
           self.wiki_location_id = wiki_location.id if wiki_location
         end
       end

これらの私のコントローラーは

      class Admin::ListsController < Admin::AdminController
        active_scaffold :list do |conf|
          conf.columns = [:name, :list_order, :enabled]
          conf.columns[:enabled].form_ui = :checkbox 
          conf.columns[:enabled].inplace_edit = true
          list.sorting = {:list_order => 'asc'}
        end
      end


      class Admin::WikiLocationsController < Admin::AdminController
        active_scaffold :wiki_location do |conf|
          conf.columns = [:title, :street]
          list.per_page = 10
        end
      end 


     class Admin::ListLocationsController < Admin::AdminController  
       active_scaffold :list_location do |conf|
         conf.columns = [:list, :wiki_location]
         conf.columns[:list].form_ui = :select
         conf.search.columns << :list
       end
     end

また、List_Locationsテーブルのwiki_locationフィールドに入力時に検索(SAYT)機能を実装しました

私の見解は次のようになります

ここに画像の説明を入力してください

ここに画像の説明を入力してください

下記のリンク Activescaffoldオートコンプリートの手順に従って、オートコンプリート機能を実装しました

現在、私の問題は、アクティブなスキャフォールドのリストページで通常の検索を使用すると、結果が得られないことです。

コンソールから取得したクエリは

 SELECT `list_locations`.`id` AS t0_r0, `list_locations`.`list_id` AS t0_r1, 
 `list_locations`.`wiki_location_id` AS t0_r2, `list_locations`.`created_at` AS t0_r3,
 `list_locations`.`updated_at` AS t0_r4, `lists`.`id` AS t1_r0, `lists`.`name` AS t1_r1,
 `lists`.`list_order` AS t1_r2, `lists`.`enabled` AS t1_r3, `lists`.`created_at` AS 
  t1_r4, `lists`.`updated_at` AS t1_r5 FROM `list_locations` LEFT OUTER JOIN `lists` ON 
 `lists`.`id` = `list_locations`.`list_id` WHERE ((((`lists`.`id` LIKE '%museum%'))))
  ORDER BY `list_locations`.`id` ASC LIMIT 15 OFFSET 0

list.nameではなくlists.idフィールドで検索しているように見えます

なんでこんな感じ。どうすればlist.nameを検索できますか。wiki_locations.title列も検索する必要があります。これはどのように行うことができますか。助けてください。

4

1 に答える 1

1

設定してみてください:

conf.columns[:list].search_sql = 'list.name'
于 2012-03-02T10:04:09.573 に答える