在我的Angularjs应用程序中,我使用这个
https://github.com/vinaygopinath/ngMeta。
原文链接:https://www.f2er.com/angularjs/144996.html<title ng-bind="ngMeta.title"></title> <Meta property="og:title" content="{{ngMeta.title}}" /> <Meta property="og:description" content="{{ngMeta.description}}" />
我的控制器代码是
app.controller('controller1',function($scope,$location,$http,$routeParams,ngMeta,$route){ $scope.$route = $route; ngMeta.setTitle('site title'); ngMeta.setTag('description','this is description'); ngMeta.setTag('keywords','tag1,tsg2,tag3'); });
页面加载后,一切正常,但Google正在显示{{ngMeta.description}} {{ngMeta.title}}
任何帮助来解决这个问题。