我有使用完整路径的组件templateUrl
@Component({
templateUrl: 'app/components/controls/checkbox/checkbox.html'
})
我知道我可以使用moduleId: module.id
,但我想保留 html 文件的完整路径以用于我的部署目的。当我运行 ng-xi18n 时,出现错误:
Error: Compilation failed. Resource file not found:
C:/Users/TestUser/Source/Workspaces/MyApp/src/app/
components/controls/checkbox/app/components/controls/checkbox/checkbox.html
有没有办法在不使用的情况下解决这个问题moduleId: module.id
?谢谢