0

私のTokeninputオートコンプリートフィールドで、返された列を自分のものと、定義された方法で行ったときの両方にしようとして:address:websiteます:store

class BusinessStore < ActiveRecord::Base
    scope :search_by_store, lambda { |q|
       (q ? where(["address LIKE ? or website LIKE ? like ?", '%'+ q + '%', '%'+ q + '%','%'+ q + '%' ])  : {})}

    def store
        if self.online_store
          "#{business_name} - #{website}"
        else
          "#{business_name} - #{address}"
        end
    end
end

class BusinessStoresController < ApplicationController

  def index
    @business_stores = BusinessStore.all
    @business_stores = BusinessStore.search_by_store(params[:q])

    respond_to do |format|
      format.html # index.html.erb
      format.xml  { render :xml => @business_stores }
      format.json { render :json => @business_stores.collect{|b|{:id => b.id, :name => b.store } } }
    end
  end
end

私のjsonページ:http://localhost:3000/business_stores.jsonすべての結果が正しく表示されますが、トークンフィールドには:address結果のみが表示され、Webサイトの結果は表示されません。これを修正するにはどうすればよいですか?

4

1 に答える 1

1

これを試して:

(q ? where(["address LIKE ? OR website LIKE ?", "%#{q}%", "%#{q}%" ]) : {})}
于 2011-12-10T16:59:08.380 に答える