XMLHttpRequest.open,用户名/密码参数不起作用

时间:2017-03-01 08:52:02

标签: javascript xmlhttprequest

基本上这个要求永远不会通过。控制台上没有显示任何内容,状态仍然是0而不是有效的状态代码。

xhr.open("GET", uri, true, username, password);

设置标题确实有效。

xhr.open("GET", uri, true);
xhr.setRequestHeader("Authorization", "Basic " + btoa(username + ":" + password));

任何人都可以解释为什么会这样吗?

0 个答案:

没有答案