JQUERY GET 错误,如果设置标头 Authorization

JQUERY GET error if set header Authorization

提问人:Luca Migliori 提问时间:3/10/2023 更新时间:3/10/2023 访问量:20

问:

我用过

  • jquery V3.6.3 版本
  • 方法:GET

如果我设置标头授权值,它不起作用。

这项工作

$.ajax({
          type: "GET",
          url:'https://........../test',
          success: function (data){

          },
          error: function (xhr, ajaxOptions, thrownError, request, error){
            
          }
        });

这行不通

        $.ajax({
          type: "GET",
          url:'https://........../test',
          beforeSend: function (xhr) {
              xhr.setRequestHeader ("Authorization", "Basic " + btoa(username + ":" + password));
          },
          success: function (data){

          },
          error: function (xhr, ajaxOptions, thrownError, request, error){

          }
        });

我尝试了很多选项,一次一个或一次多个

async: false,
crossDomain: true, 
dataType: "jsonp"
JavaScript jQuery Google-Chrome XMLhttprequest

评论

0赞 foad abdollahi 3/10/2023
检查一下: stackoverflow.com/questions/5507234/...
0赞 Luca Migliori 3/10/2023
在创建这个问题之前,我看过它

答: 暂无答案