我正在开发一个Angular 2应用程序,现在我在所有本地文件包含中遇到意外的.ts
文件扩展名问题。
请参阅下面的代码
@Component({
selector: 'home',
template: require('./home.component.html')
})
我在这里收到错误
GET http://192.168.1.36/angular2/smd/app/home.component.html.ts 404 (Not Found)
如何避免本地文件中不需要的.ts
扩展名?
请建议我一个解决方案
谢谢..
答案 0 :(得分:1)
在组件注释中,您只需将templateUrl
设置为模板文件的路径。要求考虑加载其他模块。
@Component({
selector: 'home',
templateUrl: './home.component.html'
})