-1

这是要返回的对象。

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'
); 
4

2 回答 2

5

您将需要发布实际代码,因为这两个中的任何一个都应该工作:

object.status
object["status"]

如果这些不起作用,那么您以某种方式错误地定义了对象,或者对象中的对象是私有的。

于 2012-04-29T23:49:46.617 回答
1

您可以使用运算符引用 n 层对象.,没问题。

这是一个例子

var myobj = {
    'a' : 1,
    'b' : 2
};

var foobar = {
    'foo' : 'bar',
    'status' : myobj    
    };

console.log(foobar.status.a);
于 2012-04-29T23:50:27.810 回答