在Angular中,我有一些定义为常量的模板,该模板可以正常渲染,但是我想将事件附加到html常量的元素上。似乎我无法像在@Component定义中定义模板那样绑定函数。
这是一段剥离的代码,描述了我尝试过的内容。
export class SomeComponent implements OnInit {
public ngOnInit(): void {
const someHtml = `
<a (click)="someFunction()" href="someUrl">link</a>
`
.. some code that uses the const
}
public someFunction() {
console.log("clicked")
}
}
我将如何处理?