gpt4 book ai didi

angular - 调用内部组件函数抛出未定义错误

转载 作者:行者123 更新时间:2023-12-04 12:50:08 24 4
gpt4 key购买 nike

我正在尝试使用 this 前缀在回调函数范围内调用我的组件中的内部函数。出于某种原因,这会引发未定义的函数错误。任何想法为什么会这样?提前致谢!

    import { Component } from '@angular/core';

@Component({
selector: 'page-login',
templateUrl: 'login.html',
providers: []
})
export class LoginPage {

constructor() {
console.log('construct called');
}

checkLoginStatus() {
this.Service.getLoginStatus((response) => {
if(response.status == 'connected') {
this.printHelloWorld(); //throws undefined error
}
});
}

printHelloWorld() {
console.log('hello world!');
}
}

最佳答案

这是因为 this 没有在回调函数范围内引用您的组件。你必须使用 arrow function

     this.Service.getLoginStatus(response => {
if(response.status == 'connected') {
this.printHelloWorld(); //throws undefined error
}
});

绑定(bind)()

     this.Service.getLoginStatus(function(response) {
if(response.status == 'connected') {
this.printHelloWorld(); //throws undefined error
}
}.bind(this));

关于angular - 调用内部组件函数抛出未定义错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40120469/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com