ASP.NET Service& Live Server上的AJAX XMLHttpRequest错误400

时间:2013-04-22 02:47:55

标签: asp.net ajax json

我正在研究asp.net AJAX服务,其中一种方法是“更新数据库”。

我在本地IIS上测试网站时没有出现问题。但是当我上传到公共IIS时,XMLHttpRequest总是返回400错误。

有人可以帮助我并解释为什么会出现这个问题吗?我该怎么做才能解决它?如果我的问题不够清楚,请告诉我。

这是我调用服务的代码预览,

var objFaq = {
        config : {
             isPostBack : false,
             async:false,
             cache:false,
             type :'POST',
             contentType:"application/json; charset=utf-8",
             data:'{}',
             dataType :'json',
             method:'',
             url:'',
             categoryList:"",
             ajaxCallMode:0,
             arr:[],
             arrModule:[]  ,
             baseURL: 'http://www.mywebsite.com/Service/FaqService.asmx/'
            },

        ajaxCallProduct: function(config) {
           $.ajax({
                    type: objFaq.config.type,
                    contentType: objFaq.config.contentType,
                    cache: objFaq.config.cache,
                    async: objFaq.config.async,
                    url: objFaq.config.url,
                    data: objFaq.config.data,
                    dataType: objFaq.config.dataType,
                    success: objFaq.ajaxSuccess,
                    error: objFaq.ajaxFailure                            
                  });
        },

        likeQuestion:function(id)
        {
            try
            {
                this.config.method="Like";
                this.config.url=objFaq.config.baseURL + this.config.method;
                this.config.data = JSON2.stringify({id:id});
                this.config.ajaxCallMode=1;
                this.ajaxCallProduct(this.config);
            }
            catch(e)
            {
                alert(e.message);
            }
        },

        dislikeQuestion:function(id)
        {
            try
            {
                this.config.method="Dislike";
                this.config.url=objFaq.config.baseURL + this.config.method;
                this.config.data = JSON2.stringify({id:id});
                this.config.ajaxCallMode=1;
                this.ajaxCallProduct(this.config);
            }
            catch(e)
            {
                alert(e.message);
            }
        },

        ajaxSuccess: function(data) { 
            switch (objFaq.config.ajaxCallMode) {
              case 0:
              break;    
              case 1:  
              //alert('sukes');
              break;
            }
        },
        ajaxFailure: function(xhr, status, errorThrown) {                
            switch(xhr.status)
            {
                case 400:
                    alert('400' + xhr.responseText);
                    break;
                default:
                    alert(xhr.status);
                    break;
                break;
            }
        }
    };

0 个答案:

没有答案