我现在正在这样做:
$.ajax({
url: 'full_db.php',
type: 'GET',
dataType: 'JSON',
data: {col_name: firstSel},
success: function(data) {
var full_options = [];
$.each(data, function (i, data) {
full_options.push(data.age);
full_options.sort(function(a, b){
return a.age - b.age;
});
$('#second_select').append("<option>" + data.age + "</option>");
});
}
});
这会将所有不同年龄附加到我的选择(second_select
),如果我控制日志full_options
我明白了:
["55", "98", "34", "30", "45", "29", "26", "22", "37", "42", "32", "33", "36", "35", "56", "46", "25", "54", "86"]
我希望按升序排列(例如:22,25,26,29,......)。
我在这里做错了,我得到的是无序数组?
答案 0 :(得分:1)
您最好在PHP或MySQL进入JavaScript之前对数据进行排序 但是如果你愿意,你肯定可以用JavaScript对数组进行排序。
full_options.sort(); // ascending order [1,2,3]
或者,
full_options.sort();
full_options.reverse(); // descending order [3,2,1]
以下是您的表现:
full_options.sort(function(a, b){
return a.age - b.age;
});
这是一种更复杂的方法,它可以提升。
但是你在错误的地方表演。
你的代码应该是:
$.ajax({
url: 'full_db.php',
type: 'GET',
dataType: 'JSON',
data: {col_name: firstSel},
success: function(data)
{
var full_options = [];
$.each(data, function (i, data)
{
full_options.push(data.age);
$('#second_select').append("<option>" + data.age + "</option>");
});
full_options.sort();
}
});
答案 1 :(得分:1)
我为我的评论提供了答案。
如果您正在进行数据库调用,请在查询中进行排序
SELECT * from table ORDER BY column_name DESC