控制台日志行为-无法读取对象属性

时间:2019-02-15 16:23:08

标签: angular object properties undefined undefined-behavior

我正在构建一个有角度的Web应用程序。

在组件的ngOnInit中:

 public ngOnInit() {
    this.log.debug("INSTANCE", this.Instance);
    this.log.debug("ACTIVITY",this.Instance.entity);
    this.log.debug("CREATED AT", this.Instance.created_at);
        // Other staff...
 }

我得到以下结果: enter image description here

怎么可能呢?我无法读取应该在第一个日志显示时填充的对象的属性。

如果我按照建议打印密钥

Object.keys(this.Instance).forEach(data => {this.log.debug(data)});

我没有长宽键。

enter image description here

1 个答案:

答案 0 :(得分:1)

控制台日志是异步的。您可以同步获取对象的引用,但不能获取其属性。如果在扩展对象之前对其进行了修改,则会看到更新后的值。