var news = angular.module("ngst-newsDetail", ['ngRoute']); news.config(["$routeProvider", function ($routeProvider) { $routeProvider.when("/newsDetail/:newsId", { templateUrl: 'newsDetail.html', controller: 'newsDetailController', resolve: { content: ['$q', '$timeout', "$route", function ($q, $timeout, $route) { var deferred = $q.defer(); $timeout(function () { deferred.resolve('新闻详情$scope', 'content', function ($scope, content) { $scope.message = content; }]);
这里使用$route.current.params来获得参数