它可以访问单页面应用程序结构之外的登录页面吗?我有这段代码:
$routeProvider.when('/login', {
templateUrl: 'partials/login.html',
controller: 'LoginController'
});
$routeProvider.when('/dashboard', {
templateUrl: 'partials/dashboard.html',
controller: 'DashboardController'
});
Dashboard在单页面应用程序的结构中,使用我的index.html的模板,但我的登录页面应该是一个外部页面,不使用index.html作为模板......
是否可以使用ngRoute?
答案 0 :(得分:0)
登录页面应该是外部的,所以我们必须将它放在主应用程序之外,因为我们只有:
使其成为外部应用程序的好处是:
login app
登录您的main app
而不是