使用ajax的基本身份验证会抛出错误意外令牌<

时间:2014-01-31 06:02:40

标签: javascript jquery ajax http-basic-authentication

我正在尝试使用以下代码对baic身份验证进行ajax调用 -

    $.ajax({
     method: "GET",
     xhrFields: {
         "withCredentials": true
     },
     beforeSend: function (xhr) {
         xhr.setRequestHeader('Authorization', 'Basic c2h1YmhhbS5hLmFncmF3YWw6U1VOSUxANzYwMg==');
         xhr.setRequestHeader('Content-Type', 'text/plain; charset=UTF-8');
     },
     url: //some url,
     dataType: "jsonp",
     success: function (res) {
         alert("SUCC");
     },
     error: function (err) {
         console.log(err);
         alert(err.status);
     }
 });

但每次它都会引发错误Uncaught SyntaxError:Unexpected token<并转到错误功能。

无法弄清楚问题....请帮助....非常重要。!!!

此致 Shubham Agrawal

0 个答案:

没有答案