数据显示在同一网页上,提交后页面变为空白。
这是用于使用Node JS提交发布请求
这是我的代码:
var newProduct = Product(req.body).save(function(err, data) {
if (err) throw err;
res.json(data);
});
});```
I wanna the page show me the same page, the same form, but now disaply me the data in json format: {"_id":"5d0121efc1fbf9190df7a6a0","prodCode":1,"prodName":"a","prodDescription":"a","prodQuantity":2,"registrationDate":"2019-06-12T00:00:00.000Z","__v":0}