$routeProvide 在视图中获取 URL 中的值
$routeProvide get the value in URL in the view
我有这个:
$routeProvider
.when('/Customer/:id?', {
templateUrl: templatePath + 'Customer/Detail.html',
controller: 'myAngularJsController',
caseInsensitiveMatch: true
})
.otherwise({
redirectTo: '/defaultroute'
});
URL 是:http://localhost:39765/#/Customer/7
我想在我的页面 Detail.html
的 angularJs 变量中获取值 (7),我该怎么做?
谢谢,
将$routeParams
服务注入myAngularJsController
控制器并按键读取参数
console.log($routeParams.id);
我有这个:
$routeProvider
.when('/Customer/:id?', {
templateUrl: templatePath + 'Customer/Detail.html',
controller: 'myAngularJsController',
caseInsensitiveMatch: true
})
.otherwise({
redirectTo: '/defaultroute'
});
URL 是:http://localhost:39765/#/Customer/7
我想在我的页面 Detail.html
的 angularJs 变量中获取值 (7),我该怎么做?
谢谢,
将$routeParams
服务注入myAngularJsController
控制器并按键读取参数
console.log($routeParams.id);