我正在尝试使用MinifiedJS进行基本身份验证。
这是我目前的代码:
$.request("get", requestURL, null, {
xhr: {
withCredentials: true
},
user: "admin",
pass: "admin"
})
.then(function success(result) {
var response = JSON.parse(result);
promise.fire(true, response);
})
.error(function error(e) {
console.error(e);
promise.fire(false, e);
});
requestURL是valide,凭证也是如此。我在Chrome Developer控制台上看不到任何凭据。我在这里错过了什么吗?