How do i post to mongodb database ? I have tried this but it still thrwoing error
const data = { name, price, quantity, image, desc, sup_name, email } fetch('https://gentle-plateau-90897.herokuapp.com/fruits', { method: 'POST', headers: { 'content-type': 'application/json' }, body:(data) }) .then(res => res.json()) .then(data => { console.log(data) window.alert('Item added') e.target.reset() }) I am trying to post a…