私の coldfusion ページから返される json 文字列は次のようになります[{"client":"Asante","id":12},{"client":"City of Lancaster","id":14},{"client":"Massey Energy","id":35},{"client":"Northeast Utilities","id":68},{"client":"Washtenaw","id":50}]
。Firebug は、すべてが完全に機能していると主張していますが、select2 プラグインにはデータが表示されません。
問題が何であるかを知っている人はいますか?列名などを返す必要がありますか?
select2 呼び出し:
$(".select").select2({
allowClear: true,
blurOnChange: true,
openOnEnter: false,
ajax: {
url: "/surveymanagement/admin/client.cfc",
dataType: 'json',
data: function (term, page) {
return {
method: "GetClientsByName",
name: term
};
},
results: function (data, page) {
return { results: data };
}
}
});