Angular 2 - .ts会附加到所有本地文件中吗?

时间:2016-06-02 12:56:50

标签: angular

我正在开发一个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扩展名?

请建议我一个解决方案

谢谢..

1 个答案:

答案 0 :(得分:1)

在组件注释中,您只需将templateUrl设置为模板文件的路径。要求考虑加载其他模块。

@Component({
  selector: 'home',
  templateUrl: './home.component.html'
})