3

我正在发射一种方法: this.transitionTo('route', {},{search: this.state.search, type: this.state.type});

在 URL 中传递查询参数http://...route?search=%param10&type=param2

是否有等效的方法可以传递这些参数而不在 URL 中打印?

4

1 回答 1

6

尝试这个:

this.transitionTo("route", { search: this.state.search, type: this.state.type });
于 2015-03-18T16:14:53.793 回答