How do I find the a referring sites URL in node?

前端 未结 2 686
醉话见心
醉话见心 2021-01-31 02:40

How do I find the a referring sites URL in node?

I\'m using express, would I find this in the headers on connect or something?

Thanks!

2条回答
  •  执念已碎
    2021-01-31 03:12

    In express 4.x:

    req.get('Referrer')
    

    This will also check both spellings of referrer so you do not have to do:

     req.headers.referrer || req.headers.referer
    

    Here is the documentation

提交回复
热议问题