Select2 JS使用Ajax加载远程数据

Select2 JS使用Ajax加载远程数据,第1张

Select2 JS使用Ajax加载远程数据

您的响应将作为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中迁移到的新密钥



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4926543.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存