gpt4 book ai didi

angular - 动态函数调用 Angular 2

转载 作者:太空狗 更新时间:2023-10-29 18:03:29 25 4
gpt4 key购买 nike

我在一个变量中有函数名称,我在按钮的单击事件上分配该变量。但它不工作。有什么帮助吗?

@Component({
selector: 'my-app',
template: `
<div>
<h2>Function name is: {{FunctionName}}</h2>
<input type="button" value="click here" (click) = [FunctionName]()>
</div>
<p>{{value}}</p>
`,
})
export class App {
FunctionName:string;
value: string;
constructor() {
this.FunctionName = 'clickFunction'
}

clickFunction(){
this.value = "button clicked";
}
}

这是代码

Plunker Code

最佳答案

语法需要像这样:

<input type="button" value="click here" (click) ="this[FunctionName]()">

修复了 plunker:https://plnkr.co/edit/xGgFQuHNH72Q9FdOPEdK?p=preview

关于angular - 动态函数调用 Angular 2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42106381/

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