如何在路线中拥有可变参数?
现在我有:
的http://< -baseurl-> /简档/约翰
.when('/profile/:name', {
templateUrl: 'views/profile.html',
controller: 'ProfileCtrl'
})
但我想做这样的事情:
的http://< -baseurl-> /约翰/简档
BTW'/:name/profile
'不起作用。