1

Google Material からアイコンを表示するための md-icon を取得できません。多くの説明を必要としない人のために、ここにコードを示します。詳細はコードの後に​​あります。

app.component (すべてのメイン コンポーネントを表示します。実際の md アイコンは 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 { }

アイコンを使用するための Google マテリアル サイトの手順に従った 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 アイコンをプレーン テキストで「ホーム」としてレンダリングするだけで、エラーは発生しませんでした。ただし、MdIcon のディレクティブが欠けていたと思うので、それを挿入したところ、「MdIconRegistry のプロバイダーがありません!」というエラーが表示されました。彼らはドキュメントでMdIconRegistryについて少し話していますが、私が読んでいる方法から、私が使用したい標準のGoogleアイコンを使用したくない場合にのみ必要です。基本的に、コンポーネントをインポートし、ディレクティブを含め、インデックスにリンクを追加し、CSS コードをスタイルシートに追加しました。私が読んだことから、それはうまくいくはずですが、明らかに何かが欠けています。

実際の質問とは関係のないコードについて誰かが批評を持っている場合は、お気軽にお知らせください.

前もって感謝します。

4

3 に答える 3

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 に答える