在JSON输出

时间:2017-11-26 13:06:21

标签: jquery json

我有来自服务器AJAX JSON的输出,

teams:[{team_id: "1"}, {team_id: "2"}]

我希望在我的JS文件中使用Jquery将其转换为简单的值数组,例如[1, 2]。意味着只是值,没有team_id的关键。

我该怎么做?

感谢,

1 个答案:

答案 0 :(得分:0)

不是很难。你可以试试这个:

let newArray = [];
for (team of teams) { 
newArray.push(team.team_id);
};