使用UI-Router设置页面标题

========================1=============================


.run(['$rootScope', '$state', '$stateParams',

function($rootScope, $state, $stateParams) {
    $rootScope.$state = $state;
    $rootScope.$stateParams = $stateParams;
}

])


===================2==============================

    .state("user_overview", {
        url: "/user_overview",
         title: 'Setting Users',
        views: {
            'settingdetailView': {
                controller: "user_overviewCtr",
                templateUrl: 'setting/users/users_overview.html'
            }
        }
    }).


===================3==============================


  <title >{{ $state.current.title }}</title>


===================4==============================


    console.log($state)

使用UI-Router设置页面标题_第1张图片

你可能感兴趣的:(使用UI-Router设置页面标题)