对象属性存在但返回undefined?

时间:2013-01-06 21:51:12

标签: javascript

我在脚本中有一个自定义类/对象。在其中一个对象方法中,当我运行以下命令时:

MapLabel.prototype.show = function()
{
    console.log(this);         // Here are the
    console.log(this.canvas);  // lines in question

    if (!this.canvas) // this is not giving the expected result
    {
        console.log('canvas doesnt exist to show');
        return;
    }

    console.log('showing maplabel');
    this.visible = true;

    this.canvas.style['visibility'] = 'visible';
    this.marker.setVisible(true);
}

我得到以下内容:

MapLabel {gm_accessors_: Object, fontFamily: "'Droid Sans', 'Helvetica Neue', 
Helvetica, Arial, sans-serif", gm_bindings_: Object, fontSize: 14, fontColor: "#FFFFFF"…}
__e3_: Object
align: "center"
canvas: <canvas>
fontColor: "#FFFFFF"
fontFamily: "'Droid Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif"
fontSize: 14
gm_accessors_: Object
gm_bindings_: Object
gm_props_: Hu
id: 216
map: xh
marker: Ah
markerImage: Qh.MarkerImage
minZoom: 5
position: Q
strokeColor: "#000000"
strokeWeight: 4
text: "Sometext"
visible: false
zIndex: 100
__proto__: Dh

undefined    // <---- this.canvas = undefined even though it exists?

您可以在输出中看到this.canvas存在且具有值。但是,当console.log(this.canvas)在词语之后立即运行时,它会返回undefined

这里有什么我想念的吗?

更新:我在

中添加了调用代码的功能

1 个答案:

答案 0 :(得分:2)

只是一个疯狂的猜测,但“问题”可能与Chrome控制台有关。当您将this上下文输出到调试器时,控制台会在检查时显示当前值,而不是在执行时。

Take a look at this fiddle。单击该按钮时,您将在控制台中看到:

The current value is: {"hello":"world"} 
The this context is > Thing {hello: "world"} 
changing value of this.hello... 
The current value is: {"hello":"Cleveland"}

现在点击> Thing {hello: "world"}前面的箭头打开对象检查器,您会看到:

The current value is: {"hello":"world"} 
The this context is  Thing {hello: "world"}
  hello: "Cleveland"                              <-- Surprise!
  test: function () {
  __proto__: Thing
changing value of this.hello... 
The current value is: {"hello":"Cleveland"}

在这种情况下,this.canvas在执行时确实 未定义。

为了确保,您可以console.log(this.canvas)代替。