这是我的 JSON 数组:
msg={"userid":"82","0":"82","first":"A","1":"A","last":"B","2":"B","email":"w@w.com","3":"w@w.com","username":"n","4":"n","password":"o","5":"o","hash":"3242","6":"3242","active":"0","7":"0","date":"0","8":"0","holding":"","9":"","ip":"0","10":"0","attempts":"0","11":"0"}
现在我正在尝试获得不同的部分,但我尝试的没有任何效果。我试过了
msg.first //returns undefined
msg['first'] // returns undefined
msg[0] // returns that first bracket {
我相信这很容易解决,我只是不知道问题是什么。这个数组是由一些 php 使用json_encode()
. 如果该代码是相关的,请告诉我,我会提出来。谢谢。