javascript - 如何使用 title 而不是 id 制作 Angular Routing?

标签 javascript angularjs angular-routing

我正在用 Angular 构建一个博客,目前正在研究路线。我有使用 routeParams 的路由,但 angular 给它一个随机数,url 以 http://localhost/kensproblems/#/posts/2

结尾

我希望它自动获取标题并将其用作 URL 上的参数,或者使用 json 文件中名为 id 的属性,例如 http://localhost/kensproblems/#/posts/title-邮寄

$routeParams 是否可行?

app.js

angular.module('app', [
    'ngRoute',
    'app.controllers',
    'ui.router',
    'ngSanitize'
])

.config(['$routeProvider', '$urlRouterProvider', function($routeProvider, $urlRouterProvider){
    $routeProvider
    .when('/posts', {
        templateUrl: 'views/posts.html',
        controller: 'PostListController'
    })
    .when('/posts/:id', {
        templateUrl: 'views/singlepost.html',
        controller: 'PostDetailController'
    })
        .otherwise({
        redirectTo: '/'
    });
}]);

controllers.js

angular.module('app.controllers', ['app.directives'])
    /* Controls the Blog */
    .controller('PostListController', ['$scope', '$http', function($scope, $http){
        $http.get('data/posts.json').success(function(response){
            $scope.posts = response;
        });
    }])

    .controller('PostDetailController', ['$scope', '$http', '$routeParams', '$sce', function($scope, $http, $routeParams, $sce){
        $http.get('data/posts.json').success(function(response){
            $scope.post = response[$routeParams.id];
            console.log($routeParams.id);
            console.log($scope.post.id);
        });
    }])

posts.html

<div class="container" id="postList">
    <div class="row">
        <div class="col-md-10 col-md-offset-1">
            <div ng-repeat="post in posts | orderBy:post.date" class="post">
                <h2 class="blog-title"><a href="#/posts/{{posts.indexOf(post)}}">{{post.title}}</a></h2>
                <span class="date">Posted on {{post.date | date:'MMM dd, yyyy'}}</span>
                <div class="row top10">
                    <div class="col-md-8">
                        <div class="post-content">{{post.headline}}</div>
                        <a class="read-more" href="#/posts/{{posts.indexOf(post)}}">Read more</a>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

singlepost.html

<div class="container" id="singlePost">
    <div class="row">
        <div class="col-md-10 col-md-offset-1">
            <h1>{{post.id}}</h1>
            <h1>{{post.title}}</h1>
            <span class="date">Posted on {{post.date | date:'MMM dd, yyyy'}}</span>

            <h3>{{post.headline}}</h3>
            <div class="postContent" ng-bind-html="post.content"></div>
        </div>
    </div>
</div>

最佳答案

您需要更改两个主要内容,首先是 URL 的生成方式,其次是帖子的恢复方式。

从标题生成 URL

不是任何标题都可以作为 URL 有效,因此您需要使用 slugs .

在 View 中:

<a class="read-more" href="#/posts/{{getSlug(post.title)}}">Read more</a>

在 Controller 中:

$scope.getSlug = function(text){
  return text.replace(/\W+/g, '-');
};

从 slug 中搜索帖子

目前,您只是从数组中获取帖子作为索引,这在概念上是错误的(您会在删除一篇帖子后注意到这一点)。相反,通过数组进行搜索。如果您使用 lodash,这将非常简单.

像这样的东西会起作用:

$scope.post = _.find(response, function(post) {
  return post.title.replace(/\W+/g, '-') === $routeParams.id;
});

关于javascript - 如何使用 title 而不是 id 制作 Angular Routing?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33004365/

相关文章:

javascript - 无法读取链接 href 未定义的属性 'top'

javascript - Angular $location 未定义

javascript - AngularJS - 我可以使用指令更改 View 中 ng-repeat 的值/表达式吗

javascript - 方 block 基础游戏的颜色系统

javascript - 在 Google map 中更改 KmlLayer 颜色

javascript - Firefox 似乎忽略了 event.preventDefault()

javascript - Angular bind once vs. track by performance

namespaces - 角达特 : Namespace of route names hierarchical too?

Angular 6 build,刷新页面时未找到错误 404

angular - Angular中的嵌套路由