router.post('/goods/tejia',function(req,res,next){
var gid = req.body.gid;
console.log(gid);
User.find({
gid :gid
}).then(function(goodsInfo){
console.log(goodsInfo);
// res.render('main/goods',{
// goodsInfo : goodsInfo
// })
})
})
router.get('/',function(req,res,next){
console.log(req.goodsInfo);
res.render('main/goods',{
goodsInfo : req.goodsInfo
})
})
问题是如何在post中渲染页面 或者把从数据库中查到的数据get到 本人新手 请多包涵
res.json()把数据返回到前端,前端通过DOM操作来更改视图