Angular2为html设置条件

时间:2017-05-20 15:34:36

标签: angular2-template

我尝试使用2个不同的用户角色制作路线。每个都有2个UI。 (我正在使用expressjs作为服务器)
对于学生student-dashboard.html
对于教师teacher-dashboard.html
路线为example.com/dashboard
我试试这个但是没有用:

@Component({
  selector: 'app-home-page',
  templateUrl: user_type == 1 ?'./teacher-dashboard.html':'./student-dashboard.html'
})  

我认为的另一种方式:
1.制作2 angular app(将有2 dist folder
2.将2 UI放入1个文件中,然后使用ngIf进行检查。

哪一个是好的解决方案?非常感谢

0 个答案:

没有答案