您的响应将作为Select2
3.x响应返回,这很好。因此,我们提供了此
processResults方法(以前是
results),因此您可以在客户端修改响应。
在您的情况下,您的响应中包含
results键,但是您的
processResponse函数引用的
result键不存在。如果您将其更改为
processResults: 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 the remote JSON data return { results: data.results, pagination: { more: data.more } };},
然后事情应该开始工作。这还将
more响应的现有属性映射到
pagination我们在Select2 4.0中迁移到的新密钥。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)