简体   繁体   中英

How to access data from res.render in Express

I want to access the data that was sent from response.render in my html file.

I have this code in my server.

 app.post('/game',function(req,res){
 var name = "Jude";
 res.render(__dirname +'/game.html',{user:name});
 });

How do i access user variable in my game.html?

You'd have to use a template language like Jade , EJS and so on . If you already have the HTML in place, try EJS.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM