如何使用jquery ajax调用传递Web服务的凭据?

如何使用jquery ajax调用传递Web服务的凭据?,第1张

如何使用jquery ajax调用传递Web服务凭据

尝试使用post作为方法类型,大多数Web服务是受保护的,并且需要使用post而不是Get进行转换

另外还可以帮助您调试错误以及错误提示信息。

 $.ajax({     url: WEBSERVICE_URL,     type: "POST", //This is what you should chage     dataType: "application/json; charset=utf-8",     username: "admin", // Most SAP web services require credentials     password: "admin",     processdata: false,     contentType: "application/json",     success: function () {         alert("success");     },     error: function (xhr, ajaxOptions, thrownError) { //Add these parameters to display the required response         alert(xhr.status);         alert(xhr.responseText);     }, });


欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/zaji/5008258.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-11-14
下一篇2022-11-14

发表评论

登录后才能评论

评论列表(0条)

    保存