Is there a way to run reload?
See original GitHub issue@krasimir Hi,
Thanks for the nice lib.
Is it possible to run reload for router to re call routing logic. Example:
router.navigate('/users'); # -> API.getUsers() called, ui rendered with users
API.deleteUser(123); # User clicks a button, some API method called
router.reload(); # -> to back to the step 1 above and then update ui
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
Auto reloading python Flask app upon code changes
Run the flask run CLI command with debug mode enabled, which will automatically enable the reloader. As of Flask 2.2, you can pass...
Read more >Write and debug code by using Hot Reload - Visual Studio ...
Start the app with the debugger attached using either F5 or, if supported for your application, Ctrl+F5. Open a C#, C++, or Visual...
Read more >Hot reload - Flutter documentation
How to perform a hot reload. To hot reload a Flutter app: Run the app from a supported Flutter editor or a terminal...
Read more >5 Ways to Live Reloading Go Applications - Tech Inscribed
Air is a command-line utility that provides live reloading for Go applications. Install Air by running the following command.
Read more >Edit running code with Hot Reload - JetBrains Rider
You can edit the code of a suspended program and then continue debugging without the need to restart the session. The affected project...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Sorry i really don’t understand why not implement a router.reload() function, ? Congratulations this is amazing project.
The only way I found that allows me to do a reload is the following:
But this solution has issues with
leave
logic