标签: javascript typeerror
嗨,我的情况非常奇怪:
JavaScript调试器给我写了一个错误:
TypeError: friends.persons[1] is undefined
但是当我这样做时:
alert(friends.persons[1].name.firstname);
然后它显示我的名字“Ivan”。
friends是一个JSON数据,来自Ajax请求。
怎么做,要删除此错误消息?
由于 NIK