when we implement a click event to trigger api call or dispatch an action in redux, we will like to use this simple syntax to handle it.
<a href="javascript:void(0)" onClick={clearFilter}>all posts</a>
we will see the following warming in the development tool windows
since React 16.9 update had deprecate the JavaScript URL, you can check out this link for more information
https://reactjs.org/blog/2019/08/08/react-v16.9.0.html
but the work around is quiet simple. we can fix it withe code below.
<a href="#" onClick={ev => {
ev.preventDefault();
clearFilter
return false; // old browsers, may not be needed
}}>all posts</a>
No comments:
Post a Comment