gpt4 book ai didi

javascript - 如何在 javascript 中将 JSON 数组值转换为整数(来自 php/mysql)

转载 作者:太空宇宙 更新时间:2023-11-03 10:43:37 30 4
gpt4 key购买 nike

我有一个 php 页面,它在 mysql 数据库中获取一些数据并返回一个 json 文件,然后我用一个 ajax 调用调用这个 json 文件:

$.ajax({
type: "POST",
dataType: "json",
url: "get_players_stats.php", //Relative or absolute path to players_stats file
success: function(data) {
var list = [];
$.each(data, function() {
list.push([this.time, this.playersonline]);
})
console.log(list);

}
});

console.log(list); 向我展示了这个:

[["-1009843200000", "1"], ["-252460800000", "2"], ["-94694400000", "3"], ["31536000000", "2"],....

但我希望它看起来像这样:

[[-1009843200000, 1], [-252460800000, 2], [-94694400000, 3], [31536000000, 2],....

我该怎么做?

最佳答案

你能做这么简单的事情吗?

$.each(data, function() {
list.push([Number(this.time), Number(this.playersonline)]);
}

关于javascript - 如何在 javascript 中将 JSON 数组值转换为整数(来自 php/mysql),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34684936/

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