admin管理员组

文章数量:1327963

I am firing a method : this.transitionTo('route', {},{search: this.state.search, type: this.state.type});

which passes query params in URL http://...route?search=%param10&type=param2

Is there equivalent method that passes these parameters without printing in URL ??

I am firing a method : this.transitionTo('route', {},{search: this.state.search, type: this.state.type});

which passes query params in URL http://...route?search=%param10&type=param2

Is there equivalent method that passes these parameters without printing in URL ??

Share Improve this question asked Jan 13, 2015 at 23:26 Piotr LeniartekPiotr Leniartek 1,1872 gold badges15 silver badges33 bronze badges 1
  • Better to check this stackoverflow./questions/27891667/… – user2360560 Commented Jul 29, 2015 at 3:55
Add a ment  | 

1 Answer 1

Reset to default 6

Try this:

this.transitionTo("route", { search: this.state.search, type: this.state.type });

本文标签: