AngularJS改变位置

时间:2014-03-11 11:49:53

标签: angularjs

我想自己打电话给一个带参数的路线。

我找到了可以使用的$ location.search - 函数,但它不能用于我的配置:

$location.search('/students', {id:id});
$location.path('/students').search({id:id});

两个都不工作。

1 个答案:

答案 0 :(得分:1)

假设您的路线定义为:

'/students/:id'

然后您需要通过以下方式设置您的位置路径:

$location.path('/students/' + id);