0

我已将 .xml 代码转换为 .json

对于 xml,我使用的是这样的:

var stage = xml.getElementsByTagName("stage" + game.current_stage)[0];

你怎么能在json中做到这一点?我想要这样的东西:

var stage = json."stage"+ game.current_stage;
4

4 回答 4

0

如果我理解这个问题:

var stage = json["stage"+ game.current_stage];
于 2012-11-21T12:23:57.130 回答
0
var stage = json["stage" + game.current_stage];
于 2012-11-21T12:24:35.813 回答
0

你想用 Javascript 还是什么来阅读?

然后下面的代码会有所帮助。请尝试一下

var stage = JSON.parse(json)["stage"+ game.current_stage];
于 2012-11-21T12:31:54.277 回答
0

您仍然可以对 JSON 使用零索引,正确的语法是:

var stage = json["stage" + game.current_stage][0];
于 2012-11-21T12:37:54.123 回答