我有来自太阳黑子的数据到 select2(显示控制器的 list_styles 方法)。我可以在新的提供者表单上使用 select2 搜索和保存多个类别而没有任何问题,但是当我尝试从编辑提供者表单上的数据库加载数据时,它不会显示。尝试了 initselection 方法并检查了文档/stackoverflow 中是否适合我的应用程序但无法对其进行排序的 initselection 方法。创建了一个名为 list_categories 的新控制器方法,但没有成功。任何人都可以评论我正确的方法吗?谢谢你。
jQuery
$('#provider_category').select2({
minimumInputLength: 3,
multiple: true,
ajax: {
url: "/categories/list_styles",
dataType: 'json',
quietMillis: 100,
data: function (term, page) {
return {
q: term,
page_limit: 10,
page: page,
};
},
results: function (data) {
var hashtable={};
var results = \[\];
$.each(data, function(index, item){
if (hashtable\[item.parent\]===undefined) {
hashtable\[item.parent\]={text:item.parent, children:\[\]};
results.push(hashtable\[item.parent\]);
}
hashtable\[item.parent\].children.push({id:item._id,text:item.title});
});
return {
results: results
};
},
initSelection: function(element, callback) {
return $.ajax({
type: "get",
url: "/categories/list_categories",
dataType: 'json',
data: function (term, page) {
return {
q: term,
page_limit: 10,
page: page,
};
},
success: function(data){
}
}).done(function(data) {
//console.log(data);
return callback(data);
});
}
}
});
控制器 类 CategoriesController < ApplicationController respond_to :html, :json
def list_styles
search = Category.search do
fulltext params[:q]
end
search = Category.search { keywords params[:q]; paginate :page => params[:page], :per_page => params[:page_limit] }
@categories = search.results
respond_with @categories
end
def list_categories
search = Provider.find "5299b5dcdd506322c4000091"
@category = search.category
x = Category.find @category
search = Category.search { keywords x.title; paginate :page => params[:page], :per_page => params[:page_limit] }
@categories = search.results
respond_with @categories
end
end