use url ~/list/result/1256
my code in one file
App.config(["$routeProvider", function ($routeProvider) { $routeProvider.when("/list/result/:param", { controller: "ListController" }); }]); App.controller("ListController", ["$scope", "$routeParams", "$http", function ($scope, $routeParams, $http) { I want to get "1256" here, but $routeParams - empty, why, what am I doing wrong });