我希望在ajax为@BeforeClass
public static void before() {
System.setProperty("http.auth.ntlm.domain", "***");
System.setProperty("jcifs.smb.client.domain", "***");
System.setProperty("jcifs.smb.client.username", "***");
System.setProperty("jcifs.smb.client.password", "***");
System.setProperty("java.protocol.handler.pkgs", "jcifs");
}
后重定向到新页面。
这工作正常。但我想查看我所指向的新页面中的响应。
我不确定是否有任何现有方法。
complete/success
答案 0 :(得分:3)
您可以将response
保存到本地存储,并在重定向后检索。
complete: function(response){
localStorage.setItem('someName', response);
//...
}
在第2页重定向后从存储中检索响应字符串:
var response = localStorage.getItem('someName');
Browser compatibility for localStorage
或者,您可以使用document.cookie
。