Answers for "force react to reload component"

37

how to refresh the page using react

window.location.reload(false);
Posted by: Guest on February-24-2020
3

prevent a page from refreshing in react

function onLinkClick(e) {
   e.preventDefault();
   // further processing happens here
}

<a href="/my-invoice-link" onClick={onLinkClick} />
Posted by: Guest on July-09-2021
0

react router browser refresh

// Add the following to .htaccess file in the public folder
// NOTE: This is for Apache servers!

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /
  RewriteRule ^index\.html$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-l
  RewriteRule . /index.html [L]
</IfModule>
Posted by: Guest on June-04-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language