我们正在尝试在 Select2 中实现 Ajax 远程数据加载:-
$scope.configPartSelect2 = {
minimumInputLength: 3,
ajax: {
url: "/api/Part",
// beforeSend: function (xhr) { xhr.setRequestHeader('Authorization-Token', http.defaults.headers.common['Authorization-Token']); },
// headers: {'Authorization-Token': http.defaults.headers.common['Authorization-Token']},
data: function (term, page) {
return {isStockable: true};
},
results: function (data, page) {
// parse the results into the format expected by Select2.
// since we are using custom formatting functions we do not need to alter remote JSON data
return { results: data };
}
}
};
我们正在使用 AngularJS。对于每个 Http 请求,我们都将其默认设置为 Authtoken 作为标头。但不知何故,它不能与 Select2 Ajax 请求结合使用。在上面的代码中,注释代码是我失败的尝试。