0
雖然我將代碼嵌入到template
標記中,但代碼工作正常並顯示內容。Angular2不適用於templateUrl
如果我將內容移動到templateUrl
控制檯顯示未找到的特定頁面。
home.component.ts
import {Component} from "@angular/core";
@Component({
selector: 'home',
templateUrl: 'home.component.html'
})
export class HomeComponent{
}
tsconfig.js
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
}
}
我怎麼能解決這個問題?
你可以在Plunker中重現嗎? –
也檢查https://angular.io/docs/ts/latest/cookbook/component-relative-paths.html – ranakrunal9
你可以發佈你在'@ Component'中的內容嗎? – brians69