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