Angular单页面动态修改title[兼容微信]

前端之家收集整理的这篇文章主要介绍了Angular单页面动态修改title[兼容微信]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

js文件

定义module

var app = angular.module('app',['ngRoute']);

在config通过路由定义标题

app.config(['$routeProvider','$locationProvider',function ($routeProvider,$locationProvider) {
        $routeProvider
            .when('/index',{templateUrl: '../tpls/home.html',title: '首页'})
            .otherwise({redirectTo: '/index',title: '首页'});
    }]);

通过run动态调用标题

在里面定义run,通过监听 $routeChangeSuccess的变化来动态调用标题

app.run(['$rootScope',function ($rootScope) {
       
        $rootScope.$on('$routeChangeSuccess',function (event,current,prevIoUs) {
            $rootScope.title = current.$$route.title || '首页';
            document.title = current.$$route.title || '首页';
            var $body = angular.element('body');
            var $iframe = $('<iframe src="../image/arrow.png" style="display: none"></iframe>').on('load',function () {
                $timeout(function () {
                    $iframe.off('load').remove();
                },0);
            }).appendTo($body);

        });

HTML 文件

在html里同过头部head里的title 动态调用title

<head>
    <title ng-bind="title">首页</title>
</head>
原文链接:https://www.f2er.com/angularjs/147339.html

猜你在找的Angularjs相关文章