javascript - Saving api response to State using useState and Axios (React JS) - Stack Overflow

I'm having an issue when trying to save to State an axios API call. I've trieduseState set m

I'm having an issue when trying to save to State an axios API call. I've tried useState set method not reflecting change immediately 's answer and many other and I can't get the state saved. This is not a duplicate, because I've tried what the accepted answer is and the one below and it still doesn't work. Here's the (rather simple) ponent. Any help will be appreciated

export const Home = () => {
    const [widgets, setWidgets] = useState([]);
    useEffect(() => {
        axios
            .get('/call-to-api')
            .then((response) => {
                const data = response.data;
                console.log(data); // returns correctly filled array
                setWidgets(widgets, data);
                console.log(widgets); // returns '[]'
            });
    }, []); // If I set 'widgets' here, my endpoint gets spammed
    return (
        <Fragment>
            {/* {widgets.map((widget) => { // mented because it fails
                <div>{widget.name}</div>;
            })} */}
        </Fragment>
    );
};

I'm having an issue when trying to save to State an axios API call. I've tried useState set method not reflecting change immediately 's answer and many other and I can't get the state saved. This is not a duplicate, because I've tried what the accepted answer is and the one below and it still doesn't work. Here's the (rather simple) ponent. Any help will be appreciated

export const Home = () => {
    const [widgets, setWidgets] = useState([]);
    useEffect(() => {
        axios
            .get('/call-to-api')
            .then((response) => {
                const data = response.data;
                console.log(data); // returns correctly filled array
                setWidgets(widgets, data);
                console.log(widgets); // returns '[]'
            });
    }, []); // If I set 'widgets' here, my endpoint gets spammed
    return (
        <Fragment>
            {/* {widgets.map((widget) => { // mented because it fails
                <div>{widget.name}</div>;
            })} */}
        </Fragment>
    );
};
Share Improve this question asked Jan 31, 2022 at 16:23 Martin ScolaMartin Scola 251 silver badge4 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 4

First thing first the setting call is incorrect you must use spread operator to bine to array into one so change it to setWidgets([...widgets, ...data]); would be correct (I assume both widgets and data are Array)

second, react state won't change synchronously

        .then((response) => {
            const data = response.data;
            console.log(data); // returns correctly filled array
            setWidgets(widgets, data);
            console.log(widgets); // <--- this will output the old state since the setWidgets above won't do it's work till the next re-render

so in order to listen to the state change you must use useEffect hook

useEffect(() => {

   console.log("Changed Widgets: ", widgets)

}, [widgets])

this will console log anytime widget changes

the plete code will look like this

export const Home = () => {
    const [widgets, setWidgets] = useState([]);
    useEffect(() => {
        axios
            .get('/call-to-api')
            .then((response) => {
                const data = response.data;
                setWidgets([...widgets, ...data])
            });
    }, []); 

    
    useEffect(() => {

        console.log("Changed Widgets: ", widgets)

    }, [widgets])



    return (
        <Fragment>
            {/* {widgets.map((widget) => { // mented because it fails
                <div>{widget.name}</div>;
            })} */}
        </Fragment>
    );
};

Try:

setWidgets(data);

istead of

setWidgets(widgets, data);

Your widgets.map() probably fails because there isn't much to map over when the ponent is being rendered.

You should update it with a conditional like so, just for clarity:

widgets.length>0 ? widgets.map(...) : <div>No results</div>

And your call to setWidgets() should only take one argument, the data:

setWidgets(data)

or if you want to merge the arrays use a spread operator (but then you need to add widgets as the dependency to the useEffect dependency array.

setWidgets(...widgets, ...data)

You might also have to supply the setWidgets hook function to the useEffect dependency array.

Let me know if this helps..

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745191762a4615896.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信