我尝试使用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
进行检查。
哪一个是好的解决方案?非常感谢