1

我无法让 md-icon 显示来自 Google Material 的图标。对于那些不需要太多说明的人来说,这里是代码,更多的细节在代码之后。

app.component(我显示所有主要组件的地方,实际的 md-icon 在 header.component 中):

import { Component } from '@angular/core';
import { HeaderComponent } from './shared/header.component';
import { ContentComponent } from './shared/content.component';
import { FooterComponent } from './shared/footer.component';

@Component({
    selector: 'my-app',
    template: `<div id="wrapper">
    <header></header>
    <content></content>
    <footer></footer>
  <div>`,
     directives: [HeaderComponent, ContentComponent, FooterComponent]
})
export class AppComponent { }

标头组件(我尝试调用 md-icon):

import { Component } from '@angular/core';
import {MdIcon} from '@angular2-material/icon';

@Component({
    selector: 'header',
    template: `<md-icon>home</md-icon>
    <h1>This is the Header</h1>
    `,
    directives: [MdIcon]
})
export class HeaderComponent { }

这是根据谷歌材料网站上使用其图标的步骤的css和html:

CSS:

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/MaterialIcons-Regular.eot");
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url("../fonts/MaterialIcons-Regular.woff2") format("woff2"), url("../fonts/MaterialIcons-Regular.woff") format("woff"), url("../fonts/MaterialIcons-Regular.ttf") format("truetype");
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
}

HTML:

<html>

<head>
  <title>Boiler Plate</title>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="assets/styles/layout.css">
  <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
  <!-- 1. Load libraries -->
  <!-- Polyfill(s) for older browsers -->
  <script src="node_modules/core-js/client/shim.min.js"></script>
  <script src="node_modules/zone.js/dist/zone.js"></script>
  <script src="node_modules/reflect-metadata/Reflect.js"></script>
  <script src="node_modules/systemjs/dist/system.src.js"></script>
  <!-- 2. Configure SystemJS -->
  <script src="systemjs.config.js"></script>
  <script>
    System.import('app').catch(function(err) {
      console.error(err);
    });
  </script>
</head>
<!-- 3. Display the application -->

<body>
  <my-app>Loading...</my-app>
</body>

</html>

最初我没有收到任何错误,它只是将 md-icon 以纯文本形式呈现为“home”。但是我认为我错过了 MdIcon 的指令,所以我插入了它,现在我收到了这个错误“没有 MdIconRegistry 的提供者!”。他们在他们的文档中谈到了 MdIconRegistry,但从我阅读它的方式来看,如果您不想使用我确实想使用的标准谷歌图标,您只需要这样做。所以基本上我导入了组件,包含指令,在我的索引中添加了链接,并将 css 代码添加到我的样式表中。从我读过的内容来看,它应该可以工作,但我显然遗漏了一些东西。

任何帮助将不胜感激,如果有人对与实际问题无关的代码有任何批评,请随时告诉我,我对 Angular 2 非常陌生,我可以使用我能得到的所有建议。

提前致谢。

4

3 回答 3

3

好的,所以我找到了我所缺少的东西,它在文档中,我只是没有找对地方。在 main.ts 文件中,您需要导入和引导 HTTP_Providers,在组件中,您需要导入 MdIcon 和 MdIconRegistry 以及包含 MdIconRegistry 的提供程序。这一切意味着什么?我很高兴你问!

Main.ts 之前:

import { bootstrap }    from '@angular/platform-browser-dynamic';
import { AppComponent } from './app.component';

bootstrap(AppComponent);

Main.ts 之后:

import { bootstrap }    from '@angular/platform-browser-dynamic';
import { AppComponent } from './app.component';
import { HTTP_PROVIDERS } from '@angular/http';

bootstrap(AppComponent, [
    HTTP_PROVIDERS
]);

header.component.ts 之前:

import { Component } from '@angular/core';
import {MdIcon} from '@angular2-material/icon';

@Component({
    selector: 'header',
    template: `<md-icon>home</md-icon>`,
    directives: [MdIcon]
})
export class HeaderComponent { }

header.component.ts 之后:

import { Component } from '@angular/core';
import {MdIcon, MdIconRegistry} from '@angular2-material/icon';

@Component({
    selector: 'header',
    template: `<md-icon>home</md-icon>`,
    directives: [MdIcon],
    providers: [MdIconRegistry]
})
export class HeaderComponent { }

图标的文档可以在这里找到,帮助我的文档可以最底部找到。

于 2016-05-26T19:39:15.693 回答
1

正确答案在这里:您必须正确设置项目。您没有以正确的方式导入图标。您只需导入图标和字体即可。

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">

您将其导入 html 中,仅此而已。你所做的一切都是一个奇怪的解决方法。

于 2016-11-15T19:10:00.337 回答
0

文档中:

<!--
For Material Design Icons
The class '.material-icons' is auto-added if a style has NOT been specified
since `material-icons` is the default fontset. So your markup:
-->
<md-icon> face </md-icon>
<!-- becomes this at runtime: -->
<md-icon md-font-set="material-icons"> face </md-icon>
<!-- If the fontset does not support ligature names, then we need to use the ligature unicode.-->
<md-icon>  </md-icon>
<!-- The class '.material-icons' must be manually added if other styles are also specified-->
<md-icon class="material-icons md-light md-48"> face </md-icon>
于 2016-05-26T16:14:37.277 回答