加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

angular – 模板解析错误:没有将“exportAs”设置为“matMenu”

发布时间:2020-12-17 17:33:49 所属栏目:安全 来源:网络整理
导读:随着Angular Material及其 breaking changes的新更新,我无法再使用我的 md-menu组件.我在导入MaterialModule时工作,但现在导入MatMenuModule或MdMenuModule时会产生以下错误: compiler.es5.js:1690 Uncaught Error: Template parse errors:There is no dire
随着Angular Material及其 breaking changes的新更新,我无法再使用我的< md-menu>组件.我在导入MaterialModule时工作,但现在导入MatMenuModule或MdMenuModule时会产生以下错误:

compiler.es5.js:1690 Uncaught Error: Template parse errors:
There is no directive with "exportAs" set to "matMenu" ("
</mat-toolbar>
  <mat-menu xPosition="after" [ERROR ->]#wordListMenu="matMenu" 
): 
ng:///NavbarModule/NavbarComponent.html@38:28

我遵循documentation的指南和API,但语法似乎已经改变了?我已经尝试了#wordListMenu =“matMenu”和#wordListMenu =“mdMenu”并且错误仍然存??在.

我的html文件(相关部分)是:

<button mat-button [md-menu-trigger-for]="wordListMenu" [ngClass]="{'active' 
  : isActive(['/wordlist'])}">
  Word Lists
</button>
<mat-menu xPosition="after" #wordListMenu="matMenu" 
  [overlapTrigger]="false">
  //Content of menu
</mat-menu>

我的模块是:

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import {NavbarComponent} from 'app/navbar/navbar.component';
import { MdTooltipModule,MatMenuModule } from '@angular/material';

@NgModule({
  imports: [
    CommonModule,MdTooltipModule,MatMenuModule
  ],declarations: [NavbarComponent],exports: [NavbarComponent]
})
export class NavbarModule { }

有什么我想念的吗?为什么编译器不识别matMenu?

解决方法

问题出在你的角度版本上.将角度版本更新为4.4.3或更高版本. Material 2.0.0-beta.11取决于4.4.3或更高版本.从 CHANGELOG文档:

Breaking changes
Angular Material now requires Angular 4.4.3 or greater

链接到working demo.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读