Когда я пытаюсь опубликовать данные, это дает мне GET http://localhost:5000/stored 404 (Not Found)
. Как я могу опубликовать данные и затем сохранить их в mysql базе данных?
Это код в React
import React from 'react'
class InsertProduct extends React.Component{
constructor(){
super( )
}
postData(){
fetch('/stored', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
firstParam: 'yourValue',
secondParam: 'yourOtherValue',
})
})
}
render(){
return(
<div>
<button onClick={() => this.postData()}>Submit</button>
</div>
)
}
}
export default InsertProduct;
И это node
и express
app.post('/stored', (req, res) => {
res.send(req.body)
});