有没有办法使用单个模板并动态填充模板?

时间:2015-07-28 05:30:24

标签: angularjs html5 routing angular-routing angularjs-templates

有没有办法使用单个模板并动态填充模板? http://jsfiddle.net/cmckeachie/mtV62/light/

var routingExample = angular.module('FunnyAnt.Examples.Routing', []);
routingExample.controller('HomeController', function ($scope) {});
routingExample.controller('AboutController', function ($scope) {});

routingExample.config(function ($routeProvider) {
    $routeProvider.
    when('/home', {
        templateUrl: 'embedded.home.html',
        controller: 'HomeController'
    }).
    when('/about', {
        templateUrl: 'embedded.about.html',
        controller: 'HomeController'
    }).
    otherwise({
        redirectTo: '/home'
    });
});

说我想使用embedded.home.html模板传递" Home"和"关于"值动态。请帮忙,因为我是AngularJS的新手。

1 个答案:

答案 0 :(得分:0)

是的,您可以使用stateParams(ui-router)或routeParams为(ngRoute)执行此操作。

Stateparams如下

$stateProvider
    .state('contacts.detail', {
        url: "/contacts/:contactId",
        templateUrl: 'contacts.detail.html',
        controller: function ($stateParams) {
           // other stuff
        }
    })
样本状态参数可能是这样的

// Your $stateParams object could be
{ id:'123', type:'default', repeat:'0', from:'there', to:'here' }

使用路由提供程序,您可以执行以下操作

$routeProvider.
    when('/home:id:type', {
        templateUrl: 'embedded.home.html',
        controller: 'Ctrl1'
    }).
    when('/about:id:type', {
        templateUrl: 'embedded.about.html',
        controller: 'Ctrl2'
    });

routingExample.controller("Ctrl1", function($scope, $routeParams) {
  console.log($routeParams.id);
  console.log($routeParams.type);
  // do other stuff
});

Look at this blog for more details.