2021年9月23日 星期四

express透過req要取得request進來的url資訊

可以透過

1.req.protocol // http或https

2.req.hostname // 這只會取到example.com

3.req.get('host') // 可以取到 example.com:3000

4.req.originalUrl // 取得/main?x=1&y=2

沒有留言: