This post has been de-listed
It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.
2
Todo list requires page refresh to view changes
Post Flair (click to view more posts with a particular flair)
Post Body
I'm building a simple to do list app that uses React for the front end and Express/MongoDB for the back end.
The add post function and delete function do work as intended however the list doesn't render the changes unless the page is fully refreshed
import './App.css';
import AddItemComponent from './components/AddItemComponent';
import LoadingScreen from './components/LoadingScreen';
import ItemComponent from './components/ItemComponent';
import axios from 'axios';
import { useState, useEffect } from 'react';
function App() {
const [items, setItems] = useState([]);
const [loading, setLoading] = useState(false);
useEffect(() => {
setLoading(true);
axios.get('http://localhost:3000/items')
.then((data) => {
setItems(data.data)
})
.catch((e) => console.log(e))
.then(() => setLoading(false))
}, [setLoading])
if (loading) {
return <LoadingScreen />
}
return (
<div className="App">
<div className='itemList'>
<ul>
{
items.map((e) => {
return <ItemComponent key={e._id} item={e} />
})
}
</ul>
</div>
<div className='addItem'>
<AddItemComponent />
</div>
</div>
);
}
I thought the useEffect hook would get the new list every time App re-renders and update the items however items isn't updated until after the page has fully refreshed
Author
User Disabled
Account Strength
0%
Disabled 5 months ago
Account Age
4 years
Verified Email
Yes
Verified Flair
No
Total Karma
25
Link Karma
8
Comment Karma
n/a
Profile updated: 5 days ago
Posts updated: 8 months ago
Subreddit
Post Details
We try to extract some basic information from the post title. This is not
always successful or accurate, please use your best judgement and compare
these values to the post title and body for confirmation.
- Posted
- 2 years ago
- Reddit URL
- View post on reddit.com
- External URL
- reddit.com/r/learnreactj...