{}在javascript中是对象,其访问属性的方法为 a.name,a['name'],参见http://www.itxueyuan.org/view/6332.html
{}在python,java中是字典(java中叫map),其访问方式为a.get(‘name’),a['name']