angular – ‘md-card’不是材料2中的已知元素

前端之家收集整理的这篇文章主要介绍了angular – ‘md-card’不是材料2中的已知元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用角度4和材质2处理Web应用程序.我收到此错误
parse errors:
'md-card' is not a known element:
1. If 'md-card' is an Angular component,then verify that it is part of this module.
2. If 'md-card' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. ("<h2>Nothing to show</h2>
[ERROR ->]<md-card>Simple card</md-card>
"): ng:///AppAccessModule/SPLoginComponent.html@1:0
    at SyntaxError

当我尝试在一个文件夹中嵌套两次的组件中使用材料时

这些是我的结构:

-----Components(folder)
  -------Auth(folder)
  --------Login(component1)
  --------Signup(component2)

但如果我下一次喜欢这样:

-------Auth(folder)
  --------Login(component 1)
  --------Signup(component2)

我没有任何问题我该怎么做才能解决这个问题?谢谢

在你的src / app / modules / app-access.module.ts中导入MdCardModule:
import { MdCardModule } from '@angular/material';

并在导入中添加它:

imports: [ 
        ....
        MdCardModule,],

如果您使用材料2中的任何其他组件,也请添加它们.

原文链接:https://www.f2er.com/angularjs/141467.html

猜你在找的Angularjs相关文章