1

我正在使用 Select2 实现自动完成功能,以从 JSON 获取 AJAX 加载的用户列表,以填充多值选择框。

到目前为止,我已经能够通过参考以下来源实现大部分所需的功能:

http://gistflow.com/posts/428-autocomplete-with-rails-and-select2

http://luksurious.me/?p=46

我的问题是,自动完成查询区分大小写。我需要它不区分大小写。通过一些研究,我遇到了一个 GitHub 问题,其中 Select2 创建者解释说“应该在服务器端进行 Ajax 匹配”。

https://github.com/ivaynberg/select2/issues/884

经过多次试验和错误以及一些广泛的研究,我没有想出解决区分大小写问题的解决方案。不幸的是,“在服务器端匹配”有点让我头疼,我想知道是否有人可以提出解决这个问题的方法?

以下是我迄今为止的工作:

哈姆

= hidden_field :recipient_id, "", data: { source: users_path }, class: "select2-autocomplete"

咖啡脚本

 $ ->

   $('.select2-autocomplete').each (i, e) ->
     select = $(e)
     options = { 
       multiple: true 
     }

     options.ajax =
       url: select.data('source')
       dataType: 'json'
       data: (term, page) ->
         q: term
         page: page
         per: 5

       results: (data, page) ->
         results: data

     options.dropdownCssClass = 'bigdrop'
     select.select2 options

用户控制器

class UsersController < ApplicationController
  def index

    @users = User.order('name').finder(params[:q]).page(params[:page]).per(params[:per])

    respond_to do |format|
      format.html
      format.json { render json: @users }
    end

  end
end

用户模型

class User < ActiveRecord::Base
  scope :finder, lambda { |q| where("name like :q", q: "%#{q}%") }

  def as_json(options)
    { id: id, text: name }
  end
end
4

1 回答 1

1

弄清楚了!

答案在于查询中的自定义范围和 LIKE 子句。LIKE 是区分大小写的子句。因为,我使用的是 PostgreSQL,所以我能够将 LIKE 子句更改为不区分大小写的 ILIKE。

因此,为了获得不区分大小写的匹配,用户模型应如下所示:

用户模型

class User < ActiveRecord::Base
  scope :finder, lambda { |q| where("name ILIKE :q", q: "%#{q}%") }

  def as_json(options)
    { id: id, text: name }
  end
end
于 2014-01-08T16:35:44.167 回答