如何在AngularJS中更新元标记?

时间:2013-04-20 10:40:51

标签: angularjs meta-tags

我正在使用AngularJS开发一个应用程序。我想在路线变更时更新元标签 如何更新AngularJS中的元标记,可以在页面的“查看源”中显示?

这是一个HTML代码 -

  <!DOCTYPE html>
    <html ng-app="app">
        <head>
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <meta name="fragment" content="!" />
            <meta name="title" content="Test App">
            <meta name="description" content="Test App">
            <meta name="keywords" content="Test,App">

            <link rel="stylesheet" href="css/jquery-ui-1.10.2.custom.min.css" />
            <link rel="stylesheet" href="css/extra.css" />
            <script src="js/libs/jquery-1.8.3.min.js"></script>
            <script src="js/libs/jquery-ui-1.10.2.custom.min.js"></script>
            <script src="js/libs/angular.min.js"></script>
            <script src="js/controller.js"></script>
            <script src="js/routes.js"></script>
        </head>
        <body>
            <div ng-controller="mainCtrl" class="main-container" loading>
                <div class="container-holder">
                    <div class="container">
                        <div ng-include src='"elements/header.html"'></div>
                        <div ng-view class="clearfix"></div>
                    </div>
                </div>

                <div ng-controller="userCtrl" id="test">
                    <div class="container" class="login-container">
                        <div id="login-logo">
                            <img src="images/logo-300.png" alt="" class="login-img"/>
                            <br />
                            <div ng-view></div>
                        </div>
                    </div>
                </div>
        </body>
    </html>

5 个答案:

答案 0 :(得分:34)

<html ng-app="app">
    <title ng-bind="metaservice.metaTitle()">Test</title>
    <meta name="description" content="{{ metaservice.metaDescription() }}" />
    <meta name="keywords" content="{{ metaservice.metaKeywords() }}" />


<script>
    var app = angular.module('app',[]);
    app.service('MetaService', function() {
       var title = 'Web App';
       var metaDescription = '';
       var metaKeywords = '';
       return {
          set: function(newTitle, newMetaDescription, newKeywords) {
              metaKeywords = newKeywords;
              metaDescription = newMetaDescription;
              title = newTitle; 
          },
          metaTitle: function(){ return title; },
          metaDescription: function() { return metaDescription; },
          metaKeywords: function() { return metaKeywords; }
       }
    });

   app.controller('myCtrl',function($scope,$rootScope,MetaService){
      $rootScope.metaservice = MetaService;
      $rootScope.metaservice.set("Web App","desc","blah blah");
   });
</script>
 <body ng-controller="myCtrl"></body>


</html>

答案 1 :(得分:8)

如果您使用angular-ui-router,则可以使用ui-router-metatags

答案 2 :(得分:7)

我在2天前通过创建服务,使用$ window以及一些经典的javascript解决了这个问题。

在你的html标记中创建你需要的任何元标记...(现在可以将它们留空,或者你可以将它们设置为默认值。)

<head> 
    <meta name="title"/>
    <meta name="description"/>
</head>

然后我们需要创建这样的服务。

angular.module('app').service('MetadataService', ['$window', function($window){
 var self = this;
 self.setMetaTags = function (tagData){
   $window.document.getElementsByName('title')[0].content = tagData.title;
   $window.document.getElementsByName('description')[0].content = tagData.description;
 }; 
}]);

现在我们需要使用&#34; self.setMetaTags&#34;来自控制器内的服务(在初始化时)......你只需在控制器上的任何地方调用该函数。

  angular.module('app').controller('TestController', ['MetadataService',function(MetadataService){

   MetadataService.setMetaTags({
       title: 'this',
       description: 'works'
    });

   }]);

答案 3 :(得分:1)

当您在大多数浏览器中执行“查看源代码”时,您会看到在对DOM进行任何JavaScript操作之前最初从服务器发送的文档。 AngularJS应用程序通常会执行大量DOM操作,但它实际上从未更改过原始文档。当您执行类似右键单击的操作时 - &gt;检查FireFox或Chrome中的元素(使用开发工具),您将看到包含所有JavaScript更新的呈现DOM。

因此,要回答您的问题,无法使用JavaScript更新描述元标记,以便更改将反映在“查看源”中。但是,您可以更新元描述标记,以便任何浏览器插件(例如书签应用程序等)都可以看到更新的描述。要做到这一点,你会做这样的事情:

var metaDesc = angular.element($rootElement.find('meta[name=description]')[0]); metaDesc.attr('content', description);

答案 4 :(得分:0)

我调整了here找到的答案,以便在我的网站上进行此操作。您在路由配置中建立元内容,然后将函数绑定到$ routeChangeSuccess事件,以将配置的值放入$ rootScope。只要您的元标记绑定到$ rootScope值,一切都将按计划完成。

angularApp.run(['$rootScope', function ($rootScope) {
    $rootScope.$on('$routeChangeSuccess', function (event, current, previous) {
        $rootScope.title = current.$$route.title;
        $rootScope.description = current.$$route.description;
        $rootScope.keywords = current.$$route.keywords;
    });
 }]);

angularApp.config(function ($routeProvider, $locationProvider) {
    $routeProvider
        .when('/About', {
            templateUrl: 'Features/About/About.html',
            title: 'Here\'s the Title',
            description: 'A Nice Description',
            keywords: 'Some, Keywords, Go, Here'
        });

    // use the HTML5 History API
    $locationProvider.html5Mode(true);
    $locationProvider.hashPrefix('!');
});

<head>
    <meta charset="utf-8" />
    <meta name="keywords" content="{{keywords}}"/>
    <meta name="description" content="{{description}}">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="fragment" content="!" />

    <title ng-bind="title">A Placeholder Title</title>
    <link rel="icon" href="/Images/Logo.ico">
    <base href="/" />
    @Styles.Render("~/Content/css")
</head>