My Axios call is returning a 404 error, React/Express
问题 I am using React and Express to try and post an Article to MongoDB after clicking a button. **server.js** app.use(express.static("public")); app.post("/articles/:id", function(request, response){ console.log(request.body); }); and **home.jsx** addToFavorites = article => { console.log(article); this.state.savedArticles.push(article); this.setState(this.state.savedArticles); axios.post("/articles/" + article.id, { title: article.title, summary: article.summary, writer: article.writer, date: