对象不会从原型函数返回

时间:2012-07-04 19:19:05

标签: javascript

我实例化一个这样的对象:(我的意思是当我说数组时说对象)

text_object = new SText( form_elements );

为了调试的目的,我这样称呼它:

console.log('text_array in caller' + ( text_object.getArray().toSource() ) );

实际功能如下:

SText.prototype.getArray = function( ) {
    console.log('text_array in getArray' + this.text_array.toSource() );
    return this.text_array;
};

console.log在实际函数中显示数组,但永远不会返回: 这是日志:

[15:16:44.160] text_array in getArray({url:"http://a.com", title:"a", tag:"a", domain:"a.com", path:"http://www.google.com/s2/favicons?domain=a.com"})

[15:16:44.162] text_array in Caller({})

1 个答案:

答案 0 :(得分:1)

你试过吗

console.log('text_array in caller' + text_object.getArray().toSource());