你能幫我弄清楚爲什麼我得到「未定義」而不是價值。顯示JSON數組的問題
因爲它是清楚地看到,我遇到了麻煩從陣列中的數據,在螢火我得到這個作爲響應....
{"status":"success",
"response":[
{"email":
{"email":"[email protected]",
"valid":"1",
"reason":null,
"confirmed_at":"0000-00-00 00:00:00",
"contact_email":"1",
"login_email":"1",
"users_id":"6375"},
"history":[
{"contactRole":"Non Classified Lead with History",
"contactProject":"2082",
"contactBrand":"B"},
{"contactRole":"co Author",
"contactProject":"32",
"contactBrand":"B"},
{"contactRole":"co Author",
"contactProject":"176",
"contactBrand":"B"},
{"contactRole":"co Author",
"contactProject":"582",
"contactBrand":"B"},
{"contactRole":"co Author",
"contactProject":"1858",
"contactBrand":"B"},
{"contactRole":"Author",
"contactProject":"12",
"contactBrand":"J"},
{"contactRole":"Editor",
"contactProject":"176",
"contactBrand":"B"}]},
{"email":
{"email":"[email protected]",
"valid":"1",
"reason":null,
"confirmed_at":"0000-00-00 00:00:00",
"contact_email":"0",
"login_email":"0",
"users_id":"6375"},
"history":[]}]}
這是指我的JavaScript文件中的代碼 http://pastebin.com/gPaEAKim
我得到的視圖的快照。
只是要在安全方面......這是當我從控制器
Array
(
[status] => success
[response] => Array
(
[0] => Array
(
[email] => Array
(
[email] => [email protected]
[valid] => 1
[reason] =>
[confirmed_at] => 0000-00-00 00:00:00
[contact_email] => 1
[login_email] => 1
[users_id] => 6375
)
[history] => Array
(
[0] => Array
(
[contactRole] => Non Classified Lead with History
[contactProject] => 2082
[contactBrand] => B
)
[1] => Array
(
[contactRole] => co Author
[contactProject] => 32
[contactBrand] => B
)
[2] => Array
(
[contactRole] => co Author
[contactProject] => 176
[contactBrand] => B
)
[3] => Array
(
[contactRole] => co Author
[contactProject] => 582
[contactBrand] => B
)
[4] => Array
(
[contactRole] => co Author
[contactProject] => 1858
[contactBrand] => B
)
[5] => Array
(
[contactRole] => Author
[contactProject] => 12
[contactBrand] => J
)
[6] => Array
(
[contactRole] => Editor
[contactProject] => 176
[contactBrand] => B
)
)
)
[1] => Array
(
[email] => Array
(
[email] => [email protected]
[valid] => 1
[reason] =>
[confirmed_at] => 0000-00-00 00:00:00
[contact_email] => 0
[login_email] => 0
[users_id] => 6375
)
[history] => Array
(
)
)
)
)
哪些變量在代碼中未定義? – 2012-01-16 14:40:34
我的猜測是它在兩個'each()'循環中都使用'email'有關。嘗試給他們不同的名字。 – jprofitt 2012-01-16 14:41:35