在Angular 9中,当使用命名函数作为then()
、listen()
和subscribe()
的参数时,有一个作用域问题。在这种情况下,函数的this
关键字将指向全局作用域,而不是组件的实例。
为了解决这个问题,你可以使用箭头函数或bind()
方法来绑定函数的作用域。下面是几种解决方法的示例代码:
getData().then((response) => {
this.processData(response); // 使用箭头函数绑定this作用域
});
// 或者
getData().then(response => this.processData(response));
bind()
方法:getData().then(this.processData.bind(this)); // 使用bind()方法绑定this作用域
const self = this; // 保存this到一个局部变量
getData().then(function(response) {
self.processData(response); // 使用局部变量引用this作用域
});
这些解决方法中的任何一个都可以解决在使用命名函数作为then()
、listen()
和subscribe()
参数时的作用域问题。请根据你的代码和偏好选择其中一种解决方法。