基于Material 2 SystemJS的项目。
材料2以这种方式安装:
npm install --save @angular/material
然后它在SystemJS配置中连线:
...
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
'@angular/material': 'npm:@angular/material/material.umd.js', <-- material 2
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
...
指定index.html
中设置的图标:
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"/>
设置MdIconRegistry
:
...
import { MaterialModule } from '@angular/material';
import { MdIconRegistry } from '@angular/material/icon';
@NgModule({
imports: [ BrowserModule, MaterialModule.forRoot() ],
declarations: [ AppComponent ],
providers: [ MdIconRegistry ],
bootstrap: [ AppComponent ],
schemas: [ CUSTOM_ELEMENTS_SCHEMA ]
})
export class AppModule {
constructor(mdIconRegistry: MdIconRegistry) {
mdIconRegistry.registerFontClassAlias('material', 'material-icons');
}
}
然后在AppComponent
内使用
<md-icon fontSet="material">home</md-icon>
但由于这些JS错误,它无法正常工作:
zone.js:1382 GET http://localhost:8080/node_modules/@angular/material/material.umd.js/icon 404 ()
Error: (SystemJS) XHR error (404) loading http://localhost:8080/node_modules/@angular/material/material.umd.js/icon
值得一提的是,相同的配置在使用Angular CLI制作的项目中运行良好。
如何让md-icon
在SystemJS项目中工作?
答案 0 :(得分:1)
要使用默认图标字体(使用SystemJS),只需执行以下操作(适用于我):
<md-icon>home</md-icon>
根据docs:
,您不需要使用MdIconRegistry顺便说一下,你得到的错误是由这一行引起的:
import { MdIconRegistry } from '@angular/material/icon';
应该是:
import { MdIconRegistry } from '@angular/material';