var contacts = {
'addressBook' : [
{
'name': 'hillisha'
'email': 'hill@example.com',
},
{
'name': 'neil'
'email': 'neil@example.com',
},
{
'name': 'brian'
'email': 'brian@example.com',
},
{
'name': 'matt'
'email': 'matt@example.com',
},
{
'name': 'mike'
'email': 'mike@example.com',
}
]
};
错误弹出说意外的字符串。不确定为什么,需要帮助。我试图运行一个相当简单的循环,它不会期待字符串。
答案 0 :(得分:3)
在每个姓名之后,您都会错过逗号。数组内对象的元素。请注意,在电子邮件'之后的最后一个逗号实际上是可选的。