angularjs 中通過ui-router設定不同網頁不同內容__js

來源:互聯網
上載者:User

controller.js 

angular.module('myApp', [ ] )</span>  .run(['$location','$rootScope',function($location, $rootScope){    $rootScope.$on('$stateChangeSuccess', function (event, toState, toParams, fromState, fromParams) {      $rootScope.title = toState.title    });  }]);


router.js

$stateProvider      .state('global.search', {        title: ' 這裡設定每個page的title',        url: '/global/search?q&company&user&region&account_type&call_type&registered',        views: {          'main': {            templateUrl: helper.getUrl('global.search'),            controller: 'searchCtrl',          }        }      })

index.html 
<!doctype html><html lang="zh-cmn-Hans" ng-app="myApp"><head>  <meta charset="UTF-8">  <title ng-bind="title">這裡是預設的標題啦</title></head><body>  <div ui-view></div></body></html>


通過ng-bind指令將  $rootScope下的title綁定到html頁面中

在$stateProvide.state中設定一個屬性用力傳遞title內容,這裡設定的是title屬性

在首頁的angualr.module()下運行run()函數用來擷取router傳來的title屬性,每當網頁更改跳轉就會觸發$stateChangeSuccess事件

這裡的$stateChangeSuccess事件不可以用$routechangesuccess事件替代,如果不用ui-router外掛程式則可以,代碼如下:


router.js

.config(function($stateProvider, $urlRouterProvider) {$urlRouterProvider.otherwise('/home');$stateProvider    .state('home', {        url: '/home',        templateUrl : 'views/home.html',        data : { pageTitle: 'Home' }    })    .state('about', {        url: '/about',        templateUrl : 'views/about.html',        data : { pageTitle: 'About' }    })     });

controller.js

$rootScope.$on("$routeChangeSuccess", function(currentRoute, previousRoute){    $rootScope.pageTitle = $route.current.data.pageTitle;  });


index.html

<title ng-bind="<span style="font-family: Arial, Helvetica, sans-serif;">pageTitle</span>"></title>





相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.