angularjs – 查询字符串参数在ui路由器urls?

前端之家收集整理的这篇文章主要介绍了angularjs – 查询字符串参数在ui路由器urls?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这些状态: @H_502_1@.state('quotes',{ abstract: true,url: '/quotes' }) .state('quotes.new',{ url: '/new',templateUrl: 'views/quote-form.html',controller: 'QuoteFormCtrl' }) .state('quotes.new.customer',{ url: '?customer',controller: 'QuoteFormCtrl' })

当我点击URL / quotes / new?customer = 123时,?客户查询字符串被剥离,我留在quotes.new状态。

对我最有意义的只是添加一个params:[‘customer’]到quotes.new状态定义,但是给我一个错误抱怨,我指定url和params。

任何我想做的事情的例子将非常感激。

您应该修改url string属性以包含您的客户查询参数,如下所示: @H_502_1@.state('quotes.new',{ url: '/new?customer',controller: 'QuoteFormCtrl' });

可以使用&amp ;:将多个参数分隔开来添加多个参数

@H_502_1@.state('mystate',{ url: '/myState?paramOne&paramTwo //... });

the docs

原文链接:https://www.f2er.com/angularjs/145198.html

猜你在找的Angularjs相关文章