我有问题,我的代码不起作用,它不接受我传递的数据
app.post('/', (req, res) => {
var photo = new Photo(req.body);
photo.save()
.then((data) => {
res.send(data);
}).catch((err) => {
res.status(400).send('Unable to save Photo');
});
});
<form action="/" method="POST">
<div class="form-group">
<label>Title Photo</label>
<input type="text" class="form-control" name="title" placeholder="Title">
</div>
<div class="form-group">
<label>Photo</label>
<input type="text" class="form-control" name="image" placeholder="Link Photo">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
使用Postman我可以发送数据,但没有表单,问题是什么
使用Express,Mongodb和Handlebars
请帮帮我