Angular:更改同一控制器的URL

时间:2013-06-30 10:50:47

标签: javascript url angularjs

$routeProvider.
    when('/:placeId', {templateUrl: 'client/partials/menu.html', controller: MenuCtrl}).
    when('/look/refill', {templateUrl: 'client/partials/refill.html', controller: RefillCtrl}).
    when('/look/orderCart', {templateUrl: 'client/partials/orderCart.html', controller: OrderCartCtrl}).
    otherwise({redirectTo: '/0'});
}]).

我需要在第一页上添加链接,当您单击它时,应更改URL(对于URL中的axeample add 1),但页面应保持不变,不进行任何更改和重新加载。怎么做?感谢

1 个答案:

答案 0 :(得分:0)

认为这就是你想要的

when('/:placeId', {templateUrl: 'client/partials/menu.html', controller: MenuCtrl, reloadOnSearch: false})