Send two of the same param to ui-sref

31 Views Asked by At

How would I pass two of the same parameters to ui-sref?

productSearch({'d': 53, 'b': 20, 'b': 19, 's': 6, 'b': 19})

the 'b' param just uses the latter value of 19.

How would I include two b values to go to this url:

http://example.com/search?d=53&s=6&b=20&b=19

Thank you very much!

2

There are 2 best solutions below

1
On BEST ANSWER

It's a matter of syntax. All languages I know which implement hash, or inline object notation don't support duplicate keys. It would not event make sense to do it. How are gonna access the params later? params.b and.... params.b.

It wouldn't make sense at the url level either. Query parsing programs will most likely take the value of the last b. I think this is standard behaviour.

Use an array instead (productSearch({ b: [1,2,3] })).

0
On

Why don't you want to rename them to b1 and b2 for example? I think in every language and in every framework/library similar approach will cause naming inconsistense. You are configuring your params, so call them differently and configure your state with them