這是正在返回的對象。如何訪問javascript中對象的內部對象
Object:
contributors_enabled: false
created_at: "Sat Apr 18 02:20:51 +0000 2009"
...
status: Object
...
verified: false
正如你可以看到有2個對象。父母,然後是內部稱爲「狀態」的對象。
在javascript中,如何訪問「狀態」對象。我試過object.status
,它返回null。
真正的代碼:
function get_data($id) {
global $tmhOAuth;
$code = $tmhOAuth->request('POST', $tmhOAuth->url('1/users/lookup.json', ''), array('user_id' => $id));
if ($code == 200) {
$data = json_decode($tmhOAuth->response['response'], true);
return $data;
} else {
outputError($tmhOAuth);
}
}
if (!empty($_POST) && !is_null($_POST)) {
extract($_POST); //imports $id;
$data = get_data($id);
exit(json_encode($data));
}
$.post(
'/twitauth/app.php',
data,
function(response) {
console.log(response);
},
'json'
);
我們能有一個[的jsfiddle(http://jsfiddle.net/),好嗎? – Ryan
我猜這只是僞代碼,因爲它看起來不像一個有效的JS對象? – adeneo
這是CoffeeScripts中的一個嗎?或僞代碼? – Joseph