gpt4 book ai didi

javascript - $.getJSON 执行后排序 JSON 数组

转载 作者:行者123 更新时间:2023-11-30 17:29:45 26 4
gpt4 key购买 nike

我的 json 对象和 getJSON() 之间有一个工作连接。我还可以使用这段代码对我获得的数据进行排序,我在数组的“名称”字段上对它进行了排序并且它工作正常:

$.getJSON(url,function(json){ 
function sortJson(a,b){
return a.name > b.name? 1 : -1;
}
json.users.sort(sortJson);
$.each(json.users,function(i,row){
$("#output").append(
'<li>' + row.id + row.name + row.job + '</li>'
);
});
});

这是我的 json 数组:

{"users":[
{"id":"1","name":"John","job":"worker"}
{"id":"2","name":"Mike","job":"innovator"}
{"id":"3","name":"Anna","job":"reader"}
]}

我想要的是,当我点击一个按钮时,sortJson() 应该在另一个字段(如“id”或“job”)上对用户进行排序。我这样做了:

function sortJsonField(x){
var field = x;
var url="http://localhost/api/users.php";
$.getJSON(url,function(json){
function sortJson(a,b){
if(field == "id"){ return a.id > b.id? 1 : -1; }else
if(field == "job"){ return a.job > b.job? 1 : -1; }else
return a.name > b.name? 1 : -1;
}
json.users.sort(sortJson);
$.each(json.users,function(i,row){
$("#output").append(
'<li>' + row.id + row.name + row.job + '</li>'
);
});
});
}

它成功了,现在你应该想知道我的问题是什么。就是这样,每次我单击按钮执行 sortJsonField('thefieldname')。它执行整个 $.getJSON,与 url 建立新连接并与后端通信。我不想要那样,它太慢了,服务器的工作量会很重。我想获取一次 json,然后对数组进行排序(所以实际上我只需要刷新 $.each 函数)。但它不起作用。

有什么想法吗?

好的,我修改了代码,我想我真的很接近了:

<!DOCTYPE html><head>
<title>Users</title>
<script src="jquery-1.9.1.min.js"></script>
<script>
$(document).ready(function(){
var url="http://192.168.247.86/X/users.php";
var json = { users: [] };
//getting & storing
$.getJSON(url,function(response){
json = response;
});
//sorting
function sortJsonField(field){
alert(field);
function sortJson(a,b){
if(field == "id"){ return a.id > b.id? 1 : -1; }else
if(field == "job"){ return a.job > b.job? 1 : -1; }else
return a.name > b.name? 1 : -1;
}

json.users.sort(sortJson);
showJSON();
};
//showing
function showJSON(){
$.each(json.users,function(i,row){
$("#output").append(
'<li><em>' + row.id + '</em><br>' + row.name + '<br>' + row.job + '</li>'
);
});
};
});
</script>
</head>

<h1>Users</h1>
<button onClick="sortJsonField(Id)">Id</button>
<button onClick="sortJsonField('Name')">Name</button>
<button onClick="sortJsonField('Job')">Job</button>
<ul id="output"></ul>
</body>
</html>

这是我的 json:

{"users":[{"id":"1","name":"John","job":"Worker"},{"id":"2","name":"Mike","job":"Reader"},{"id":"3","name":"Mary","job":"Writer"},{"id":"4","name":"Angelo","job":"Player"},{"id":"5","name":"Kevin","job":"Doctor"},{"id":"6","name":"Zidane","job":"Player"}]}

现在开始工作了

    <!DOCTYPE html>
<head>
<script src="jquery-1.9.1.min.js"></script>
<script>
$(document).ready(function() {
var url="http://localhost/X/users.php";
var json = new Array();
//getter
$.getJSON(url,function(data){
json = data;
}).done(function(){
sortJsonField();
$('#sortid').click(function(){
sortJsonField("id");
})
$('#sortname').click(function(){
sortJsonField("name");
})
$('#sortjob').click(function(){
sortJsonField("job");
})
});

function sortJsonField(field){
function sortJson(a,b){
if(field == "id"){ return a.id > b.id? 1 : -1; }else
if(field == "job"){ return a.job > b.job? 1 : -1; }else
return a.name > b.name? 1 : -1;
}
json.users.sort(sortJson);
showJSON();
};
//shower
function showJSON(){
$('#output').empty();
$.each(json.users,function(i,row){
$("#output").append(
'<li><em>' + row.id + '</em><br>' + row.name + '<br>' + row.job + '</li>'
);
});
};
showJSON();
});
</script>
</head>
<body>
<button id="sortid">Id</button>
<button id="sortname">Name</button>
<button id="sortjob">Job</button>
<div id="output"></div>
</body>
</html>

最佳答案

这样做:

var json = { users: [] };
var url="http://localhost/api/users.php";
$.getJSON(url,function(response){
json = response;
});

function sortJsonField(field){

function sortJson(a,b){
if(field == "id"){ return a.id > b.id? 1 : -1; }else
if(field == "job"){ return a.job > b.job? 1 : -1; }else
return a.name > b.name? 1 : -1;
}

// No need to assign this to a new array.
json.users.sort(sortJson);

showJSON();
};

function showJSON(){

// May empty the ul/ol before doing this? up to you..
$.each(json.users,function(i,row){
$("#output").append(
'<li>' + row.id + row.name + row.job + '</li>'
);
});

};

编辑:另外,JSON 结构有点不正确...

改变这个:

{"users":[
{"id":"1","name":"John","job":"worker"}
{"id":"2","name":"Mike","job":"innovator"}
{"id":"3","name":"Anna","job":"reader"}
]}

....为此:

{"users":[
{"id":"1","name":"John","job":"worker"}, // <--- Do you see the commas here?
{"id":"2","name":"Mike","job":"innovator"}, // <--- and here?
{"id":"3","name":"Anna","job":"reader"}
]}

对象格式正确,但不是有效数组,因此 javascript 中断。修改它,它应该一切正常。

P.S 这是我用来检查您的 JSON 结构的网站的网址:http://www.freeformatter.com/json-validator.html

关于javascript - $.getJSON 执行后排序 JSON 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23391515/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com