角材料:-垫单选按钮的模板错误

时间:2018-12-27 21:27:02

标签: angular angular-material

我正在使用Angular材质,但遇到一个错误,尽管它在stackblitz上工作正常,但在我的代码上工作不正常。以下是我面临的错误 我也导入了MatRadioModule。

Uncaught Error: Template parse errors:
Unexpected character "EOF" ("</mat-radio-button>
    <mat-radio-button value="2">Option 2</mat-radio-button>
  </mat-radio-group[ERROR ->]"): ng:///AppModule/RadioButtonsComponent.html@18:19
    at syntaxError (compiler.js:485)
    at DirectiveNormalizer._preparseLoadedTemplate (compiler.js:3220)
    at eval (compiler.js:3200)
    at Object.then (compiler.js:474)
    at DirectiveNormalizer._preParseTemplate (compiler.js:3200)
    at DirectiveNormalizer.normalizeTemplate (compiler.js:3178)
    at CompileMetadataResolver.loadDirectiveMetadata (compiler.js:14908)
    at eval (compiler.js:34412)
    at Array.forEach (<anonymous>)
    at eval (compiler.js:34411)

以下是我的HTML代码

<mat-radio-group>
    <mat-radio-button value="1">Option 1</mat-radio-button>
    <mat-radio-button value="2">Option 2</mat-radio-button>
  </mat-radio-group>

1 个答案:

答案 0 :(得分:1)

只需检查各自的(您的模块名称).module.ts文件,即可查看是否已导入“ MatRadioModule”。