Description
Describe the bug
Hi
I have a search form view which contains some search options as html inputs and a search button. It works like this:
I press "Search" button, which does nothing but programmatically navigates to the current path + also incudes some query params. This causes the load
and beforeLoad
functions of the current route to trigger, looking for the updated search parameters and performing the search.
If I now press the "Search" button again, without making any changes to the search parameters, it programmatically navigates to the current url again. This time, load
and beforeLoad
functions are not executed. It seems that these functions are not executed if the url of the page has not changed.
There should be away to make these function trigger even if the navigation occurs to the same url. Otherwise, I cannot perform the same search again.
I tried including shouldReload: true
option for the route, but it did not help.
This worked well in 0.0.1-beta.185
but not in 1.19.4