AngularJS 通过 slug 使用 $routeParams 获取单个 post 失败

AngularJS fetching single post by slug with $routeParams fails

我正在开发一个小型 AngularJS 博客应用程序(我使用的框架版本是 1.7.8)。

我已经设法从我自己制作的 API 中提取并显示 posts。

我在显示 单个 post 时遇到问题,我无法找出原因。

我的 app.js 文件:

angular.module('app', [
    'ngRoute',
    'app.controllers',
    'ngSanitize'
]).config(['$routeProvider', function($routeProvider){
    $routeProvider.when('/', {
        templateUrl: 'templates/posts.html',
        controller: 'PostsController'
    }).when('/:slug', {
        templateUrl: 'templates/singlepost.html',
        controller: 'SinglePostController'
    }).when('/page/:id', {
        templateUrl: 'templates/page.html',
        controller: 'PageController'
    }).otherwise({
        redirectTo: '/'
    });
}]);

在我的两个控制器中,只有第一个可以正常工作:

// All posts
.controller('PostsController', ['$scope', '$http', function($scope, $http){
    $http.get('api').then(function(response) {

        //Categories
        $scope.categories = response.data.categories;

        // Posts
        $scope.posts = response.data.posts;

        // Pages
        $scope.pages = response.data.pages;

    });
}])

// Single post
.controller('SinglePostController', ['$scope', '$http', '$routeParams', function($scope, $http, $routeParams){
    $http.get('api/{slug}').then(function(response) {

        const slug = $routeParams.slug;
        console.log(slug); //consoles the slug post
        console.log(response.data.post); //consoles null

    });
}])

TSinglePostController 在控制台中显示 post: null。这让我感到困惑,尤其是因为:

  1. console.log(slug); 在控制台中显示任何 posts slug;
  2. 实际的 替换 {slug} ("the-future-of-oil",例如),确实显示单个 posts 控制台中的数据。

我的错误在哪里?

尝试'api/:slug'。在您的 http get

中代替 {slug}

我用 $http.get('api/' + slug) 替换 $http.get('api/{slug}') 解决了问题。

现在,在控制器中我有:

// Single post
.controller('SinglePostController', ['$scope', '$http', '$routeParams', function($scope, $http, $routeParams) {
    const slug = $routeParams.slug;
    $http.get('api/' + slug).then(function(response) {

        //Send single post to the view
        $scope.post = response.data.post;

    });
}])

在我看来:

<div class="content">
    <h1>{{post.title}}</h1>
    <div class="meta">Published on {{{post.created_at}}  by {{post.first_name}} {{post.last_name}}</div>
    <div class="post-content">{{post.content}}</div>
</div>  

有效。