如何使用javascript在重定向中添加标题信息..
我想这样重定向(不确定)..
window.location.replace('https://anotherWebSite.com');
不,我想向其中添加包含userID =“whatever”的标题信息,因此当重定向发生时,它将通过此代码提供给anotherWebsite.com,例如..
NameValueCollection headers = base.Request.Headers;
for (int i = 0; i < headers.Count; i++)
{
if (headers.GetKey(i).Equals("userID"))
{
_myID = headers.Get(i);
}
}
答案 0 :(得分:0)
我不知道有任何方法可以将响应标头附加到JavaScript重定向,但您可以将数据附加到查询字符串:
window.location.replace('https://anotherWebSite.com?user=[USERNAME]');