我想用html文件替換我的代碼內模板。我該怎麼做?如何在Angular2中使用<html>模板?
Greeting.annotations = [
new angular.ComponentAnnotation({
selector: 'greeting'
}),
new angular.ViewAnnotation({
template: '<h1>Hello!</h1>'
})
];
我想是這樣的
template: 'path/to/my/template.html'
我用Angular2和ES5。
'templateUrl:「路徑/要/我的/ template.html'' –