Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

如何做到前台发送的ajax请求和数据在后台express处理后再得到数据发送到另一个页面并跳转到该页面(页面跳转不知道怎么实现?)

$
0
0

前台代码 var topicTitle = $(this).text(); $.get("/view",{‘title’:topicTitle},function(data){ … }); 后台代码 exports.more = function(req, res){ res.render(“topic”,{result:req.query.title} ); 当前页面是index.ejs,当我点击某个按钮时发送ajax请求,在后台代码处理后,如何跳转到topic.ejs页面?


Viewing all articles
Browse latest Browse all 14821

Trending Articles