在 Angular 2 中使用 SystemJS 导入应用程序模块
Using SystemJS to import application modules in Angular 2
我正在使用 SystemJS 开发 Angular 2 with Typescript 项目。现在我发现我们经常不得不做'../../../
'之类的事情来从其他模块加载组件,这取决于我们在给定组件中的嵌套深度。似乎使用 SystemJS 的 map 设置可以让我在没有那种可怕的相对路径方法的情况下拥有可用于导入的应用程序范围的模块,但我无法确定我是否可以这样做。我也愿意用其他方法来解决这个问题。
基本上我想做的是这样的:
import {Component} from '@angular/core';
import {SecureHttpClient} from 'mySecurityModule'; //No ../../../
@Component({
moduleId: module.id,
selector: 'my-selector',
templateUrl: 'my.component.html'
})
export class MyComponent {
constructor(private client: SecureHttpClient) {
}
}
我尝试了下面的配置,但它不起作用(TS编译失败)。
(function (global) {
System.config({
paths: {
// paths serve as alias
'npm:': 'node_modules/'
},
// map tells the System loader where to look for things
map: {
// our app is within the app folder
app: 'app',
// angular bundles
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
'@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/http': 'npm:@angular/http/bundles/http.umd.js',
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
// other libraries
'rxjs': 'npm:rxjs',
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api',
'@ng-bootstrap/ng-bootstrap': 'npm:@ng-bootstrap/ng-bootstrap/bundles/ng-bootstrap.js',
// Internal Modules
'mySecurityModule': 'app/secure/secure.module'
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
app: {
main: './main.js',
defaultExtension: 'js'
},
rxjs: {
defaultExtension: 'js'
},
'angular-in-memory-web-api': {
main: './index.js',
defaultExtension: 'js'
}
}
});
})(this);
我知道可能还有其他方法可以做到这一点,但还是找不到任何确定的方法,这是我真正想解决的问题。再次感谢!
您可以设置 typescript 编译器以使用基 URL 并从那里导入。在 tsconfig.json
添加:
"compilerOptions": {
"baseUrl": "./",
...
}
那么你可以使用app root 作为绝对路径。像
import {SecureHttpClient} from 'app/mySecurityModule';
而不是:
import {SecureHttpClient} from '../../../mySecurityModule';
实际路径可能与您不同。
但是,我建议为您的编辑器使用某种导入扩展(例如,AutoImport 用于 VSCode),因为某些工具(AoT、CLI)可能对此有问题.希望随着工具变得更加成熟,情况会有所改善 (;
我正在使用 SystemJS 开发 Angular 2 with Typescript 项目。现在我发现我们经常不得不做'../../../
'之类的事情来从其他模块加载组件,这取决于我们在给定组件中的嵌套深度。似乎使用 SystemJS 的 map 设置可以让我在没有那种可怕的相对路径方法的情况下拥有可用于导入的应用程序范围的模块,但我无法确定我是否可以这样做。我也愿意用其他方法来解决这个问题。
基本上我想做的是这样的:
import {Component} from '@angular/core';
import {SecureHttpClient} from 'mySecurityModule'; //No ../../../
@Component({
moduleId: module.id,
selector: 'my-selector',
templateUrl: 'my.component.html'
})
export class MyComponent {
constructor(private client: SecureHttpClient) {
}
}
我尝试了下面的配置,但它不起作用(TS编译失败)。
(function (global) {
System.config({
paths: {
// paths serve as alias
'npm:': 'node_modules/'
},
// map tells the System loader where to look for things
map: {
// our app is within the app folder
app: 'app',
// angular bundles
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
'@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/http': 'npm:@angular/http/bundles/http.umd.js',
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
// other libraries
'rxjs': 'npm:rxjs',
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api',
'@ng-bootstrap/ng-bootstrap': 'npm:@ng-bootstrap/ng-bootstrap/bundles/ng-bootstrap.js',
// Internal Modules
'mySecurityModule': 'app/secure/secure.module'
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
app: {
main: './main.js',
defaultExtension: 'js'
},
rxjs: {
defaultExtension: 'js'
},
'angular-in-memory-web-api': {
main: './index.js',
defaultExtension: 'js'
}
}
});
})(this);
我知道可能还有其他方法可以做到这一点,但还是找不到任何确定的方法,这是我真正想解决的问题。再次感谢!
您可以设置 typescript 编译器以使用基 URL 并从那里导入。在 tsconfig.json
添加:
"compilerOptions": {
"baseUrl": "./",
...
}
那么你可以使用app root 作为绝对路径。像
import {SecureHttpClient} from 'app/mySecurityModule';
而不是:
import {SecureHttpClient} from '../../../mySecurityModule';
实际路径可能与您不同。
但是,我建议为您的编辑器使用某种导入扩展(例如,AutoImport 用于 VSCode),因为某些工具(AoT、CLI)可能对此有问题.希望随着工具变得更加成熟,情况会有所改善 (;