Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to pass $stateParams from ui-router to service in resolve? [closed]

I have a route to retrieve a single post and a service to query my API to do so. But I need to pass parameters from the URL to the service so that I can call the API properly. I cannot wrap my head around how to do that.

This is what I have come up with so far. I left out what seemed not relevant for this question.

Thanks for your help!

The routing

myModule.config([
  '$stateProvider',
  '$urlRouterProvider',
  '$locationProvider',
  function($stateProvider, $urlRouterProvider, $locationProvider) {

    $stateProvider
      .state('post', {
        url: '/posts/:hash_id/:slug',
        templateUrl: '/js/app/views/post.html',
        controller: 'PostCtrl',
        resolve: {
          postPromise: ['posts', function(posts, $stateParams){
            //returns undefined
            console.log($stateParams);
            return posts.getOne($stateParams);
          }]
        }
      })
// etc

The service

myModule.factory('posts', ['$http', 'auth', function($http, auth){
  var o = {
    posts: [],
    post: {}
  };
  o.getOne = function(params) {
    // Returns undefined
    console.log(params);
    return $http.get('/api/v1/posts/' + params.hash_id).success(function(data){
      angular.copy(data, o.post);
    });
  };
  return o;
}])
like image 533
Ole Spaarmann Avatar asked Jun 25 '15 17:06

Ole Spaarmann


1 Answers

You missed to add $stateParams dependency in postPromise resolve

Code

postPromise: ['posts', '$stateParams', function(posts, $stateParams){
like image 128
Pankaj Parkar Avatar answered Nov 07 '22 06:11

Pankaj Parkar