我使用WebStorm 2016.3創建Angular 2項目。我已經按照這個職位捆綁我的項目: https://angular.io/docs/ts/latest/guide/webpack.html使用Webpack捆綁Angular 2項目時未找到模塊
當我輸入命令npm start
它給我的錯誤列表:
我在每個文件改變templateUrl
到src/components/<template url>
但它仍然顯示這些錯誤。
任何人都可以幫助我嗎?
我使用WebStorm 2016.3創建Angular 2項目。我已經按照這個職位捆綁我的項目: https://angular.io/docs/ts/latest/guide/webpack.html使用Webpack捆綁Angular 2項目時未找到模塊
當我輸入命令npm start
它給我的錯誤列表:
我在每個文件改變templateUrl
到src/components/<template url>
但它仍然顯示這些錯誤。
任何人都可以幫助我嗎?
試試這個:../views/main-application.html
URL是開始相對於你的.ts文件的當前路徑。 所以你需要先導航。
你的答案奏效。 請幫助我: 錯誤在./src/components/views/shared/navigation-bar.component.ts 找不到模塊:錯誤:無法解析'../views/shared/navigation-bar。 component.html'in'F:\ Programming \ DotNet \ Web \ Fullstack \ ASP.NET Core \ iConfess \ A-SOURCE_CODE \ B-CLIENT \ A-WEB \ Admins tration \ src \ components \ views \ shared' @ ./src/components/views/shared/navigation-bar.component.ts 26:22-78 @ ./src/modules/main-application.module.ts @ ./src/main.ts @ multi( webpack)-dev-server/client?http:// localhost:3000 ./src/main.ts – Redplane
我想你應該閱讀'file paths';)。如果文件在完全相同的文件夾中,請使用:./ navigation-bar.component.html' – littleStudent
'@ types/node'在tsconfig.json中添加,然後你可以'require()'它。 – Jai