在js中使用window.location重定向时,未设置引荐来源标头

时间:2019-12-18 04:57:22

标签: javascript reactjs http referrer

我正在尝试通过在反应中使用window.location重定向到第三方页面。但是,当我进行重定向时,第三方服务器没有收到来自重定向的引荐来源标头。谢谢。

2 个答案:

答案 0 :(得分:0)

重定向或网页无法设置HTTP请求标头。 如果要使用标头,则必须使用XMLHttpRequest发出异步请求。

答案 1 :(得分:0)

该解决方案如何?

<form action="/target-page" method="get" name="redirect"></form>
<script> document.forms['redirect'].submit() </script>

来源:https://coderwall.com/p/7a09ja/no-referer-after-redirect-solved