Files
2018-10-16 21:32:40 +05:30

646 B
Raw Blame History

title, localeTitle
title localeTitle
Get Query Parameter Input from the Client 从客户端获取查询参数输入

从客户端获取查询参数输入

鉴于存根之后的提示,“/ namefirst = &最后= ,“我们可以像这样构建响应:

 app.get("/name", function(req, res) { 
   var firstName = req.query.first; 
   var lastName = req.query.last; 
   // Send the json object 
 }); 

帮助我们的社区扩展这些提示和指南