商品添加处理
这里我们就直接在home.js文件中添加保存商品的处理方法,如下:
app.get('/addcommodity', function(req, res) {
res.render('addcommodity');
});
app.post('/addcommodity', function (req, res) {
var Commodity = global.dbHelper.getModel('commodity');
Commodity.create({
name: req.body.name,
price: req.body.price,
imgSrc: req.body.imgSrc
}, function (error, doc) {
if (doc) {
res.send(200);
}else{
res.send(404);
}
});
});
到这里关于商品页的展示和添加就完成了,在下一节里我们将实现商品页商品加入购物车并结算的功能,继续加油吧!