"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > Prop not updating inside function

Prop not updating inside function

Published on 2024-08-25
Browse:794

Prop not updating inside function

Turns out that if you want to call a function that makes use of props or state inside the body of the function you need to call it using a useEffect that listens for the required variables and calls the function again after the variables are updated.

For example, take dispatchSweetAlert which is a function that accepts a alertConfig object containing title, onConfirm, and onCancel. When you call dispatchSweetAlert the onConfirm function will execute with the values that were present at that point in time when dispatchSweetAlert was called. If something changes after the alert is shown then you would need to call dispatchSweetAlert again in order for the onConfirm function to be called with the updated values.

For this you can use a useEffect that checks if the alert is open. If so, update the alertConfig so that the onConfirm runs with the latest changes as determined by the useEffect.

Release Statement This article is reproduced at: https://dev.to/carlosrambles/prop-not-updating-inside-function-2kgd?1 If there is any infringement, please contact [email protected] to delete it
Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3