搜索

首页  >  问答  >  正文

html5 - ajax post请求后如何渲染到页面上

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到 本人新手 请多包涵

天蓬老师天蓬老师2742 天前1013

全部回复(1)我来回复

  • PHP中文网

    PHP中文网2017-05-24 11:38:50

    res.json()把数据返回到前端,前端通过DOM操作来更改视图

    回复
    0
  • 取消回复