AngularJs Seo dymanic meta标签未编入索引

时间:2015-11-03 20:12:30

标签: angularjs seo fetch google-crawlers

我已创建且有角度的网站,并且我尝试在网站站长工具中获取Google,网站已正确呈现,但在获取标签中我的元标记

<meta name="keywords" content="{{keywords}}"/>
<meta name="description" content="{{description}}">

我试图像他们一样绑定他们,他们正在进行攻击,但谷歌机器人不会这样看待他们。有谁知道如何让谷歌机器人看到实际的关键字和标签?

app.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;
    });
 }]);

0 个答案:

没有答案