I have a home page where whenever a user visits, I want to know how many times it has been visited till date. Now I dont required to save the count on local storage but in database or persistent storage.
I have a home page where whenever a user visits, I want to know how many times it has been visited till date. Now I dont required to save the count on local storage but in database or persistent storage.
2
Answers
I have used an online page visit counter using https://www.hitwebcounter.com/webcounter.php
You can have a useEffect with empty dependency array (implementing the componentOnMount). Then make your api call to the database in the useEffect.
Something like this:
See this answer