Component relative paths是一个有用的工具。使用angular.id页面中显示的module.id的参考示例适用于 commonjs 。
我正在使用angular2-express-starter包,我无法使用组件相对路径。这似乎是因为初学者包使用 systemjs 。
任何解决方案?
答案 0 :(得分:1)
解决方案,来自github issue:
declare var __moduleName: string;
@Component({
selector: 'my-component',
moduleId: __moduleName,
templateUrl: './my.component.html'
})
export class MyComponent { }