【发布时间】:2025-12-20 18:00:07
【问题描述】:
@Component({
selector: 'bancaComponent',
templateUrl: '{{str}}'
})
export class BancaComponent implements OnInit {
str: String;
constructor(private http: Http) { }
ngOnInit(): void {
this.str = "./file.component.html";
}
还有其他方法吗? 谢谢:)
【问题讨论】:
标签: angular typescript angular2-template