访问 MatButton 内的 elementRef。角6

发布于 2025-01-09 13:59:24 字数 1124 浏览 0 评论 0原文

我正在尝试获取元素的边界。它与 div 配合得很好,但是当我尝试对带有角度材质指令的按钮执行相同操作时,我得到了 MatButton 对象,并且无法在其上使用 getBoundingClientRect 。我可以做我需要做的事情来获取 div 的边界,但是按钮的边界会不那么麻烦,因为它不会在应用程序的生命周期中改变大小。

模板摘录:

<div #container>
<button #button mat-flat-button>Button</button>

类摘录

@ViewChild('button') button : ElementRef;
@ViewChild('container') container : ElementRef;

checkBoundaries():void [
    const buttonRect = this.button.nativeElement.getBoundingClientRect();
    const containerRect = this.container.nativeElement.getBoundingClientRect();
    console.log(button);
    console.log(container);
}

我从日志中得到的内容

MatButton {_elementRef: ElementRef, _disableRipple: false, _disabled: false, _platform: Platform, _focusMonitor: FocusMonitor, …}

ElementRef {nativeElement: div}

当尝试在按钮行上调用 getBoundingClientRect 时,出现以下错误:

ERROR TypeError: Cannot read properties of undefined (reading 'getBoundingClientRect')

我将不胜感激的指导

I'm trying to get boundaries of an element. It works well with div, however when I'm trying to do the same with button with angular material directive I'm getting the MatButton object and I can't use getBoundingClientRect on it. I can do what I need to do with getting the boundaries of div, but it would be less cumbersome with boundaries of button, because it doesn't change size in lifetime of application.

Excerpt from template:

<div #container>
<button #button mat-flat-button>Button</button>

Excerpt from class

@ViewChild('button') button : ElementRef;
@ViewChild('container') container : ElementRef;

checkBoundaries():void [
    const buttonRect = this.button.nativeElement.getBoundingClientRect();
    const containerRect = this.container.nativeElement.getBoundingClientRect();
    console.log(button);
    console.log(container);
}

What I get from logs

MatButton {_elementRef: ElementRef, _disableRipple: false, _disabled: false, _platform: Platform, _focusMonitor: FocusMonitor, …}

ElementRef {nativeElement: div}

When trying to call getBoundingClientRect on button line I get the following error:

ERROR TypeError: Cannot read properties of undefined (reading 'getBoundingClientRect')

I would appreciate the guidance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梅窗月明清似水 2025-01-16 13:59:24

使用 static 属性并将其设置为 true

@ViewChild('button' , {read: ElementRef, static: true}) private button : ElementRef;

Use the static property and set it to true:

@ViewChild('button' , {read: ElementRef, static: true}) private button : ElementRef;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文