我正在利用Select2实现自动完成功能,以便从JSON获取一个加载AJAX的用户列表,以便填充多值选择框。
到目前为止,我已经能够通过引用以下来源实现大多数所需的功能:
http://gistflow.com/posts/428-autocomplete-with-rails-and-select2
我的问题是,自动填充查询区分大小写。我需要它不区分大小写。通过一些研究,我遇到了一个GitHub问题,其中Select2创建者解释说“Ajax匹配应该在服务器端完成。”
https://github.com/ivaynberg/select2/issues/884
经过多次试验和错误以及一些广泛的研究,我找不到解决案例敏感性问题的解决方案。不幸的是,“在服务器端匹配”有点过头了,我想知道是否有人可以建议解决这个问题?
到目前为止,我的工作如下:
Haml的
= hidden_field :recipient_id, "", data: { source: users_path }, class: "select2-autocomplete"
的CoffeeScript
$ ->
$('.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
答案 0 :(得分: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