How to dynamically change header based on AngularJS partial view?

后端 未结 22 1946
一向
一向 2020-11-22 10:53

I am using ng-view to include AngularJS partial views, and I want to update the page title and h1 header tags based on the included view. These are out of scope of the parti

22条回答
  •  隐瞒了意图╮
    2020-11-22 11:21

    Alternatively, if you are using ui-router:

    index.html

    
    
    
        App
    

    Routing

    $stateProvider
      .state('home', {
          url: '/',
          templateUrl: 'views/home.html',
          data: {
            title: 'Welcome Home.'
          }
      }
    

提交回复
热议问题