当在angular2组件中定义templateUrl时,我试图使用相对路径,如下所述:
http://schwarty.com/2015/12/22/angular2-relative-paths-for-templateurl-and-styleurls/
http://schwarty.com/2015/12/22/angular2-relative-paths-for-templateurl-and-styleurls/
@Component({ selector: 'login-app',moduleId: module.id,templateUrl: './app.html' })
虽然我不断得到:
ERROR: module is not defined
我正在使用–m commonjs在ts编译设置。
如何使其工作?
这似乎对我来说似乎不起作用。
I can see in the Github repo对于角度2,该功能据称在12月初添加,但它不能完全发挥我能够告诉。
原文链接:https://www.f2er.com/angularjs/144355.html文档没有被更新以反映它,它仍然缺少正确的测试从我可以告诉。
更新:
这是发生了什么的一部分。 This requires a CommonJS specific feature工作,所以您必须在tsconfig.json文件中使用该模块系统。
最重要的是,there’s an issue when using SystemJS因为将所有内容捆绑到根目录中。
基本上似乎有很多的限制,能够使用这个新功能。