有没有办法在templateUrl
. 类似于下面的代码:-
@Component({
moduleId: module.id,
selector: 'my-app',
templateUrl: DynamicUrl, //Load DynamicUrl here
styleUrls: ['app.component.css']
})
export class AppComponent{
var DynamicUrl= 'app.component.html';
// ideally this template name will be pulled from the server.
}
我对生命周期感到困惑。在哪里初始化和定义 DynamicUrl 并应用逻辑从服务器获取。
任何形式的帮助表示赞赏。