本文介绍了如何在JavaScript中访问JSON.parsed对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我做了JSON.parse,并以这样的格式在javascript变量"temp"中获取输出

I did JSON.parse and getting output in javascript variable "temp" in format like this

{"2222":{"MId":106607,
"Title":"VIDEOCON Semi Automatic Marine 6.8kg",
"Name":"washma01",
}}

我尝试过

alert(temp[0][0]);
alert(temp.2222[0].MId);

但没有得到输出.

我将如何使用javascript访问此数据?

How will I access this data in javascript ?

推荐答案

alert(temp["2222"].MId);

您不能使用数字索引,因为没有任何实际的数组.如果键的第一个字符为非数字,则可以使用点语法.例如:

You can't use numeric indexing, because don't have any actual arrays. You can use dot syntax if the first character of the key is non-numeric. E.g.:

var temp = JSON.parse('{"n2222":{"MId":106607, "Title":"VIDEOCON Semi Automatic Marine 6.8kg", "Name":"washma01", }}');
alert(temp.n2222.MId);

这篇关于如何在JavaScript中访问JSON.parsed对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-25 06:15