Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 621 Bytes

setQueryParams.md

File metadata and controls

19 lines (15 loc) · 621 Bytes

setQueryParams method

FlowRouter.setQueryParams(qs);
  • qs {String} - Serialized query string, { key: 'val' }
  • Returns {true}

Unset parameter

To remove a query param set it to null:

FlowRouter.setQueryParams({ paramToRemove: null });

Further reading