1

我正在尝试使用 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 有效,凭证也是有效的。我没有看到在 Chrome 开发者控制台上发送任何凭据。我在这里错过了什么吗?

4

0 回答 0