我有一个网络服务;为了访问它,我需要使用凭据。我想在另一个项目中使用jQuery AJAX 调用来调用 Web 服务。那么如何使用该方法为该 Web 服务传递用户名和密码呢?
问问题
5690 次
2 回答
2
这是$.ajax的文档。这也有许多额外的参数。当您需要任何额外的东西时,请遵循文档。
$.ajax({
type: 'POST',
url: 'https://webservice url',
data: ({ username: value, password: value; }) //use parameters as such defined in webservice
success: function(data){
}
})
于 2013-01-27T07:12:09.597 回答
1
$.ajax({
type: 'GET',
url: 'url',
dataType: 'json',
//whatever you need
beforeSend: function (xhr) {
xhr.setRequestHeader('Authorization', make_base_auth(user, password));
},
success: function () {});
});
function make_base_auth(user, password) {
var tok = user + ':' + password;
var hash = btoa(tok);
return 'Basic ' + hash;
}
于 2016-03-17T14:46:50.917 回答