具有未知参数的角度查询参数

时间:2015-09-16 10:14:09

标签: angularjs angular-ui-router query-parameters

是否可以通过ui-router中的任何参数?

https://github.com/angular-ui/ui-router/wiki/URL-Routing#query-parameters

url:“/ contacts?myParams ...”

我之前不知道所有参数

1 个答案:

答案 0 :(得分:0)

我使用单个参数解决了

    .state('auth.print_customers', {
     url: '/print_customers?filter'
      ...

$state.href('print_customers', {filter: angular.toJson($scope.tableParams.$params.filter)});