注: Angular Cli は使用しません。
@angular2-material/coreパッケージを追加しました。次に、 @angular2-material/button、@angular2-material/cardなどの他の angular2-material コンポーネントをインストールしました。
systemjs.config.js
/**
* System configuration for Angular 2 samples
* Adjust as necessary for your application needs.
*/
(function(global) {
// map tells the System loader where to look for things
var map = {
'app': 'app', // 'dist',
'@angular': 'node_modules/@angular',
'angular2-in-memory-web-api': 'node_modules/angular2-in-memory-web-api',
'rxjs': 'node_modules/rxjs',
'@angular2-material': 'node_modules/@angular2-material',
// <--------------added this above line----------------------
};
// packages tells the System loader how to load when no filename and/or no extension
var packages = {
'app': { main: 'main.js', defaultExtension: 'js' },
'rxjs': { defaultExtension: 'js' },
'angular2-in-memory-web-api': { main: 'index.js', defaultExtension: 'js' },
};
var ngPackageNames = [
'common',
'compiler',
'core',
'forms',
'http',
'platform-browser',
'platform-browser-dynamic',
'router',
'router-deprecated',
'upgrade',
];
//<------------------added this below part--------------------------------
var materialPackages=[
'core',
//'button',
//'card',
'list',
];
materialPackages.forEach(function(pkgName) {
packages['@angular2-material/'+pkgName] = { format: 'cjs', defaultExtension: 'js'};
});
//<----------------------till here---------------------------------
// Individual files (~300 requests):
function packIndex(pkgName) {
packages['@angular/'+pkgName] = { main: 'index.js', defaultExtension: 'js' };
}
// Bundled (~40 requests):
function packUmd(pkgName) {
packages['@angular/'+pkgName] = { main: '/bundles/' + pkgName + '.umd.js', defaultExtension: 'js' };
}
// Most environments should use UMD; some (Karma) need the individual index files
var setPackageConfig = System.packageWithIndex ? packIndex : packUmd;
// Add package entries for angular packages
ngPackageNames.forEach(setPackageConfig);
var config = {
map: map,
packages: packages
};
System.config(config);
})(this);
アプリを実行すると、以下のエラーが表示されます。
リソースの読み込みに失敗しました: サーバーは 404 (見つかりません) のステータスで応答しました http://localhost:3000/node_modules/@angular2-material/sidenav/リソースの読み込みに失敗しました: サーバーは 404 のステータスで応答しました (見つかりません) http://localhost:3000/node_modules/@angular2-material/toolbar/ リソースの読み込みに失敗しました: サーバーは 404 (見つかりません) のステータスで応答しました localhost/:16 エラー: エラー: XHR エラー (404 見つかりません) http://localhost:3000/ node_modules /@angular2-material/button (…)(匿名関数) @ localhost/:16 の読み込み http://localhost:3000/node_modules/@angular2-material/card/リソースの読み込みに失敗しました: サーバーは 404 (Not Found) のステータスで応答しました http://localhost:3000/node_modules/@angular2-material/input/リソースの読み込みに失敗しました: サーバーは 404 (見つかりません) のステータスで応答しました http://localhost:3000/node_modules/@angular2-material/checkbox /リソースの読み込みに失敗しました: サーバーは 404 のステータスで応答しました (Not Found) http://localhost:3000/node_modules/@angular2-material/radio/ リソースの読み込みに失敗しました:サーバーは 404 のステータスで応答しました (Not Found)見つかりました) http://localhost:3000/node_modules/@angular2-material/icon/リソースの読み込みに失敗しました: サーバーは 404 のステータスで応答しました (見つかりません) http://localhost:3000/node_modules/@angular2-material /list/リソースの読み込みに失敗しました: サーバーは 404 (見つかりません) のステータスで応答しました http://localhost:3000/favicon.icoリソースの読み込みに失敗しました: サーバーは 404 (見つかりません) のステータスで応答しました