答案 0 :(得分:0)
在index.html中输入ng-view标签 下载角度路由并将此依赖项注入您的应用程序。 把路由代码放在
中app.config(function ($routeProvider) {
$routeProvider
.when('/', {
redirectTo : '/user'
})
.when('/register', {
templateUrl: 'client_assets/views/register.html',
controller: 'registerController'
})
.when('/login', {
templateUrl: 'client_assets/views/log_in.html',
controller: 'logInController'
})
})
现在根据路线确定要添加的html模板和控制器。
答案 1 :(得分:0)
使用菜单项作为网址中传递的参数,然后使用ng-switch
或ng-show
来显示所选内容。
app.config(function ($routeProvider) {
$routeProvider
.when('/', {
redirectTo : '/'
})
...
.when('/menu/:item', {
templateUrl: 'index.html',
controller: 'indexController'
})
在控制器中,注入$routeParams
:
app.controller('indexController', function($scope, $routeParams) {
$scope.menuItem = $routeParams.item;
});
索引中的:
<div ng-show='menuItem == "abc">abc</div>
<div ng-show='menuItem == "def">def</div>
<div ng-show='menuItem == "pqr">pqr</div>
添加了好处,您无需创建新路线来创建包含index.html内容的新菜单
缺点,在index.html中拥挤不堪