nodejs实现前后端传值

 前端代码发送






 后端代码接收

app.get("/buttonClicked",function(req,res){
		console.log(req.query.value); //get param 
		var data = "send to client"
		res.send(data);
		res.end();
	
})

 

你可能感兴趣的:(node)