Skip to content

Tag: reactjs

Invoking function expression

I’m following a React-hooks tutorial and I don’t understand why does the function expression, timerId in the top useEffect is being invoked automatically, but the function expression, search, in the bottom useEffect requires it to be called search() in order to invoke it? Answer It is assigning a …

react-cropper URL insanely long

I’m trying to save cropped images using react-cropper. It seems to work as intended, but the URL that gets saved is crazy long. The console log of the data package alone is often over 100kb, and that’s just a data URL. When I console log (and send to a DB) I store a value that starts with data:ima…

Form does not have data in FormData javascript

I’m trying to submit a form without redirecting using AJAX. From the answers I saw the [best](new URLSearchParams(new FormData(form).entries()); ) I found (I think) without using jQuery was: I’m trying to apply this mechanism in my code, but for some reason my form does not have information. I gue…