|
|
当访问根路径 ‘/‘ ,时,返回hello one ,但是访问 localhost:3000/users/xxx
输出hello xxx ,路径中 :name 起到了占位符的作用,占位符的名字是 name ,使用 params.name 可以取得实际值
其中,req 包含请求的信息,res 包含相应的信息
req.query (请求字符串):解析后的url中的querystring 如:?name = haha ,req.query 值为{name :”haha”}
req.params :解析url中的占位符,如/:name ,访问 /haha ,req.params 值为 :{name :”haha”}
req.body :解析后请求体,需要使用相关的模块,如 body-parser 请求体为{“name”:”haha”} req.body 值为:{name:”haha”}