var userdata = {
data:{
"email": "[email protected]",
"phone":7894561230,
"opcrmMobile": 57892445
}
}
這裏我需要訪問電話opcrmMobile
和email
。我如何訪問對象內的對象的屬性
我
var store= userdata.data.opcrmMobile;
和
var mail=userdata.data.email;
但是當我使用console.log(store);
和console.log(mail);
我得到userdata.data.opcrmMobile
這樣。
,但我需要可用的代碼
檢查[這裏](http://stackoverflow.com/questions/12789141/access-object-properties-within-object)和[這裏](http://stackoverflow.com/questions/12659792/access-javascript-object-literal-value-in-same-object)。 – Rohit416
'我這樣得到userdata.data.opcrmMobile .'?像什麼 ? –
你可以告訴我們的代碼與console.log聲明...? –