gpt4 book ai didi

angularjs - $mdDialog 打开但出现以下错误。无法读取属性 'getBoundingClientRect'

转载 作者:行者123 更新时间:2023-12-03 18:19:31 24 4
gpt4 key购买 nike

我试图在单击图标时生成对话。单击 md-icon 时出现以下错误.对话框打开,但我在控制台上看到以下错误:

TypeError: Cannot read property 'getBoundingClientRect' of undefined
at transformToClickElement (angular-material.js:4652)
at dialogPopIn (angular-material.js:4630)
at Object.onShow (angular-material.js:4538)
at InterimElementFactory.self.show.compilePromise.then.showDone (angular-material.js:1827)
at processQueue (angular.js:13248)
at angular.js:13264
at Scope.$get.Scope.$eval (angular.js:14466)
at Scope.$get.Scope.$digest (angular.js:14282)
at Scope.$get.Scope.$apply (angular.js:14571)
at done (angular.js:9698)

angular-material.js:824 Uncaught TypeError: Cannot read property 'hasAttribute' of undefined

下面是我的 HTML 片段。
<md-button class="md-fab md-primary" ng-click="showAdvanced($event)"
aria-label="AddClient">
<md-icon md-svg-src="content/images/68448.svg"
style="width: 48px; height: 48px;">
</md-icon>

<md-tooltip md-visible="demo.showTooltip">
Add Client
</md-tooltip>
</md-button>

HTML 页面的 Controller 如下。
$scope.showAdvanced = function(ev) {
$mdDialog.show({
controller: 'newClient',
templateUrl: 'app/views/xyz/newClient.html',
targetEvent: ev
});};

对话框 HTML
    <md-content class="md-padding" layout="row" layout-sm="column" style="font-size:1.2em">
<form name="myForm" >
<div layout layout-sm="column">
<md-input-container style="width:80%">
<label>Name</label>
<input ng-model="create.Name">
</md-input-container>
</div>
</md-content>

谢谢

最佳答案

您缺少包装 md-dialog 标签。根据文档:

The dialog's template must have an outer md-dialog element. Inside, use an md-content element for the dialog's content, and use an element with class md-actions for the dialog's actions.



尝试这个:
<md-dialog>
<md-content>
<md-button class="md-fab md-primary" ng-click="showAdvanced($event)" aria-label="AddClient">
<md-icon md-svg-src="content/images/68448.svg" style="width: 48px; height: 48px;"></md-icon>

<md-tooltip md-visible="demo.showTooltip">
Add Client
</md-tooltip>
</md-button>
</md-content>
</md-dialog>

关于angularjs - $mdDialog 打开但出现以下错误。无法读取属性 'getBoundingClientRect',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29436262/

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