Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
550 views
in Technique[技术] by (71.8m points)

reactjs - React Hooks: Make useEffect run when location.search changes

I am trying to make a useEffect fire every time the query params of my URL changes, this is the format of the URL:

https://localhost:3000/main/persons?results=1

In my code I have the following:

const location = useLocation();

useEffect(() => {
      console.log('Location update')
    }, [location]);

However, my problem is that the useEffect is only run when the location.pathname changes, and not when the query parameters of the URL changes (?results=1). I have also tried the following logic: [location.pathname, location.search] but with no luck.

Do anyone know how I can solve this?

question from:https://stackoverflow.com/questions/65885335/react-hooks-make-useeffect-run-when-location-search-changes

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Try doing this:

const pathName = useLocation().pathname;

useEffect(() => {
      console.log('Location update')
    }, [pathnName]);

Similarly for location.search


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...