jQuery   发布时间:2022-04-19  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了如何使用jquery ajax调用传递webservice的凭据?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用这样的jquery ajax调用
$.ajax({
         url: WEBserviCE_URL,type: "GET",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() {
                   alert("ERROR");
                },});

仍然是电话不会去网络服务.每次我收到ERROR警报.有人可以帮我这个吗?

解决方法

尝试使用post作为方法类型,大多数web服务都是安全的,需要使用post而不是Get进行transimssion

加上可以帮助您调试错误错误的响应文本.

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

大佬总结

以上是大佬教程为你收集整理的如何使用jquery ajax调用传递webservice的凭据?全部内容,希望文章能够帮你解决如何使用jquery ajax调用传递webservice的凭据?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。