gpt4 book ai didi

angular - 为什么动态添加 Angular matTooltip 时不起作用?

转载 作者:行者123 更新时间:2023-12-02 17:09:59 26 4
gpt4 key购买 nike

我有一个 SVG 元素,我想在 Angular 中的某个时刻添加一个 matTooltip。我观察到,如果我尝试像这样添加 matTooltip:

generate() {
var svgEle = document.getElementById("testSVG");
var rect = document.createElementNS('http://www.w3.org/2000/svg', 'rect');
rect.setAttribute('id', "rect");
rect.setAttribute('x', "73");
rect.setAttribute('y', "95");
rect.setAttribute('class', "st01");
rect.setAttribute('width', "407");
rect.setAttribute('height', "328");
rect.setAttribute('matTooltip', "Info about the action");
svgEle.append(rect)
}

使用html测试代码:

<div style="width:400px">
<svg version="1.1" id="testSVG" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;"
xml:space="preserve">
<style type="text/css">
.st01{fill:#F99191;}
.st11{fill:#92B1F7;}
</style>
<rect x="638.5" y="146" class="st11" width="236" height="219"
matTooltip="Info about the action"/>
</svg>
</div>
<button mat-stroked-button (click)="generate()">Generate</button>

这不起作用。

这种情况下到底有什么问题?

最佳答案

它不起作用,因为 TS 中的 Angular 是一种编译语言。

这意味着 [matTooltip] 对于 TS 编译器可能意味着某些内容,但在 JavaScript 中运行时它并不存在。

Angular 不依赖元素属性来显示工具提示。相反(如果我没记错的话),它使用动态组件渲染来提供绝对定位的丰富组件。

如果您像这样附加工具提示,则与不执行任何操作相同。

关于angular - 为什么动态添加 Angular matTooltip 时不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56239207/

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