美文网首页
EJS模板中,js如何获取后端传来的数据??

EJS模板中,js如何获取后端传来的数据??

作者: yzc123446 | 来源:发表于2016-11-17 15:50 被阅读513次

    1:
    <script> var name = ‘<%=name%>’ </script>

    2:
    后端node可以这样写:
    app.post('/xxx',function(req,res){ res.json({params:params})});

    前端获取js这样写:
    $.ajax({ type: 'POST', url:'/xxx' }).done(function(results){ console.log(results); //=>params})

    相关文章

      网友评论

          本文标题:EJS模板中,js如何获取后端传来的数据??

          本文链接:https://www.haomeiwen.com/subject/odwdpttx.html