gpt4 book ai didi

angular - 如何在 typescript 中的另一个函数中从外部访问函数内部的变量?

转载 作者:搜寻专家 更新时间:2023-10-30 21:27:24 24 4
gpt4 key购买 nike

在我的 html 页面 onchange 中,我只是通过传递参数调用一个方法。检索值后,点击另一个按钮我调用 function2。我需要在同一个类中的 function2 中使用函数中的变量。我正在使用 Angular 6 和 typescript 。我的 ts 文件如下。

 export class component extends Lifecycle {
cc1: string;
constructor (){}
Function (cc1,cc2)
{
this.cc1 = cc1;
// return cc1;
}

Function2 (){
console.log(cc1);
}
}

有人可以帮我解决这个问题吗?

最佳答案

在任何方法中使用 this 关键字来访问与类相关的任何属性或方法。

export class component extends Lifecycle {
cc1: string;
constructor() {
super();
}
Function(cc1, cc2) {
this.cc1 = cc1;
// return cc1;
}

Function2() {
console.log(this.cc1);
}
}

You have to call super if you extend the class

关于angular - 如何在 typescript 中的另一个函数中从外部访问函数内部的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51791849/

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