使用
之间有什么区别吗?require
来自模板中的节点 templateUrl
@Component({
selector: 'hello',
template: require('./home.html'),
})
@Component({
selector: 'hello',
templateUrl: './hello.html',
})
答案 0 :(得分:0)
使用template
属性可以在javascript文件中定义html模板。这可以用于小模板。
@Component({
selector: 'hello',
template: `<h1>This is part of template`
})
templateUrl
加载./hello.html
文件使用它代替模板。
@Component({
selector: 'hello',
templateUrl: './hello.html',
})
不同之处在于只使用template
表示小模板,templateUrl
表示文件。