我的数据库(用户)中有一个用户列表,我想要做的是从A-Z和0-9组织它们。
然后我希望jQuery使用该JSON并使用它来显示如下列表:
A Alex Andrew Ann B Ben Benny Buck C Colin Col etc
但我不知道该怎么办。我有JSON但不是jQuery。
答案 0 :(得分:0)
如果json已经是一个数组,你不需要做任何其他事情:
$.get('/path', function (data) {
console.log('data'); //Should already be an array.
});
数组是json中支持的数据类型。
如果您的数组尚未排序,请查看sort。
答案 1 :(得分:0)
你可以使用$.getJSON('ajax/test.json', function(data) {//your js code to use data});
这特别是如果你的dataType总是json,或者$.get('ajax/test.json', function(data) {//your js code to use data});
这两个方法是jquery ajax方法的简写方法
$.ajax({
url: serverUrl,
data: 'data you need to pass to server(query params)',
success: success function,
dataType: dataType of data returned by server (json, xml, html)
});