我想使用路由來更改我的頁面的頁面標題,到目前爲止,我的標題正在改變,但是我的網址正被添加到標題中。任何線索爲什麼?使用angularjs路由更改頁面的標題
的index.html:
<title ng-bind-html="title ">Website Name</title>
JS文件
app.config(function($stateProvider,$urlRouterProvider) {
.state('dashboard', {
url: "/dashboard",
templateUrl: "partials/content/dashboard.html",
controller: "dashboardCtrl"
})
});
app.run(function ($rootScope, $state, $stateParams) {
//set it here
$rootScope.title = $state.current.title;
});
仍顯示我的位置標題的URL –
$ rootScope.title = $ state.current.data.title; –