我正在结束一个涉及管理员/前端 angularjs 的项目。在这个项目中有一个博客和一个项目发布空间。
我对 Angular 创建的链接有一些疑问,因为它们是动态的:
- 谷歌索引这些链接?如果没有,有什么办法吗?
- 由 Angular 创建的链接,我可以使用 Google Analytics 访问他们的统计信息吗?
我没有看到其他地方发表了我的疑问,因为我知道 stackoverflow 中只有 Angular 野兽中的人。
.state('home.posts',{
url : '/blog/:slug',
templateUrl : 'content/templates/single.html',
theme : 'indigo',
controller: function(ApiRestangular, $stateParams, $scope){
ApiRestangular.all('posts').getList({filter: {slug: $stateParams.slug}}).then(function(res){
$scope.item = res[0];
});
},
data: {
pageTitle: 'title'
},
access: {
requiredLogin: false
}
})