40

我正在使用 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>
4

5 回答 5

37
<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>
于 2014-10-31T08:05:28.037 回答
9

大约 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;
 }; 
}]);

现在我们需要在控制器中使用“self.setMetaTags”服务(在初始化时)......您只需在控制器上的任何位置调用该函数。

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

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

}]);
于 2016-02-20T06:23:43.350 回答
8

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

于 2016-04-04T12:40:45.303 回答
1

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

因此,要回答您的问题,无法使用 JavaScript 更新描述元标记,以便更改将反映在“查看源代码”中。但是,您可以更新元描述标签,以便任何浏览器插件(例如书签应用程序等)都可以看到更新后的描述。为此,您将执行以下操作:

var metaDesc = angular.element($rootElement.find('meta[name=description]')[0]);
metaDesc.attr('content', description);
于 2013-08-08T12:19:07.177 回答
1

我调整了找到的答案How to dynamic change header based on AngularJS partial view? 在我的网站上进行这项工作。您在路由配置中建立元内容,然后将函数绑定到$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>
于 2015-08-30T20:44:03.990 回答