有没有办法在 Angular 7+ 中做到这一点? 最佳答案 您可以通过 @ViewChild 执行-6ren">
gpt4 book ai didi

angular - 有没有办法在 Angular 7 中使用模板 html 属性 *key* 的变量?

转载 作者:行者123 更新时间:2023-12-02 17:52:07 24 4
gpt4 key购买 nike

我正在寻找一种将变量用于模板 html 属性 key 的方法。例如,

<path [attr.data-**<use-variable-here>**]="edge.id"></path>

有没有办法在 Angular 7+ 中做到这一点?

最佳答案

您可以通过 @ViewChild 执行此操作.

模板:

<path #path></path>

组件:

@ViewChild('path', {static:true}) path: ElementRef;

//... some lifecycle hook | method | callback
ngOnInit() {
const customVariable = 'my-custom';
this.path.nativeElement.setAttribute(`data-${customVariable}`, 'my-custom');
}

检查这个 stackblitz demo

关于angular - 有没有办法在 Angular 7 中使用模板 html 属性 *key* 的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59221644/

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