我在网上发布了一个单页应用(SPA)(使用AngularJs)。页面的标题和元标记将动态设置。
该网站已被Google编入索引,Google阅读的网页标题为{{ Page.title }}
。
我只想为搜索引擎的页面标题提供默认值,直到控制器设置数据为止。
答案 0 :(得分:3)
使用ng-bind:
<!DOCTYPE html>
<html ng-app>
<head>
<title ng-bind="aa">lorem</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.14/angular.min.js"></script>
<script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<input type="text" ng-model="aa" ng-init="aa=15">
</body>
</html>