'Why doesn't load data into my collection? mongodb
This is what appears on my mongo database:
This is my app.post to insert the data, when I Submit it console.log the object with the dates but with create It just says "null" ->
App listening on port 4000
{ '”title”': 'adaw', '”body”': 'dwdw' }
null { _id: new ObjectId("6274a7a58d8946ca10ae57c4"), __v: 0 }
app.post('/posts/store',(req,res)=>{
            console.log(req.body)
            BlogPost.create(req.body,(error,blogpost) =>{
                console.log(error,blogpost)
            res.redirect('/')
            })
            })` 
							
						Solution 1:[1]
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source | 
|---|---|
| Solution 1 | swapnil gautam | 

