根据Angular 2中的条件在组件中加载不同的模板

场景:

我有一个组件说,COMP必须根据登录用户的类型(Say,ADMIN用户和NORMAL用户)加载两个模板中的任何一个,比如TEMPLATE_1或TEMPLATE_2.

如何使用Angular 2最新版本?

免责声明:我是Angular 2的新手.

最佳答案 你可以使用:

>结构指令ngIf https://angular.io/docs/ts/latest/api/common/index/NgIf-directive.html

要么

>动态组件加载http://blog.lacolaco.net/post/dynamic-component-creation-in-angular-2-rc-5/

附:由于你的问题过于宽泛而且你没有展示到目前为止你所尝试过的内容,因此你会受到影响.

点赞