当前位置:网站首页>Use of pathinfo/pathname in nodejs
Use of pathinfo/pathname in nodejs
2022-06-23 21:07:00 【henu_ Newxc03】
pathinfo/pathname The style parameters are as follows : for example : /detail/1/economy (detail/:id/:type)
<h1> This is the list page </h1>
<hr>
<ul>
<li><a href="/detail/1"> The first 1 News headlines </a></li>
<li><a href="/detail/2"> The first 2 News headlines </a></li>
<li><a href="/detail/3"> The first 3 News headlines </a></li>
<li><a href="/detail/4"> The first 4 News headlines </a></li>
</ul>Interface :
app.get("/list", (req,res)=>{
res.render("list")
})
app.get("/detail/:id", (req,res)=>{
console.log(req.params);
//let {id, type} = req.params; // Deconstruct to get multiple
//console.log(id, type);
res.send(" detail ok! ");
})
边栏推荐
- JS mailbox regular expression
- How to handle the prompt that DNS is incorrect when adding resolution to Tencent cloud?
- Copilot - employee, your layoff notice has been delivered
- [SAP ABAP] call API interface instance
- How to check whether the service is running normally after easydss cluster transcoding is set up?
- 怎么开户?在国海证券开户安全吗?需要带什么?
- CPS 22 January additional incentive rules
- Fortress deployment server setup operation guide for novices
- [development skills] how to add "live broadcast" status display bar on easynvr platform
- 2021 three "myths" of science and technology industry -- yuancosmos, NFT and web 3
猜你喜欢
随机推荐
What is the difference between a database and a cloud disk drive? What functions can cloud disk drives achieve?
. NET Framework . Net core and Net standard
Talk about leap seconds
JS regular ignore case
JS five methods to judge whether a certain value exists in an array
Emmet syntax specification
How to build a personal cloud game server? How many games can the cloud game platform install?
What is the role of computer auto audit audio? What content failed to pass the audit?
How to build a cloud game platform? Disadvantages of traditional games
How to separate image processing? What should I pay attention to when separating layers?
What technology is used for video intelligent audit? Difficulties encountered in video audit?
The element of display:none cannot get offsetwidth and offsetHeight
Can Tencent cloud disk service share data? What are the advantages of cloud disk service?
[golang] quick review guide quickreview (III) - Map
Is Huishang futures trading software formal? How to download safely?
How to make a commodity price tag
手续费佣金低的券商,华泰证券网上开户安全吗
ASP. Net MVC and asp Net web form
Summary of multiple methods for obtaining the last element of JS array
What is the process of setting up local cloud on demand? Can cloud on demand audit videos?


