ASP.NET JSON web service always return the JSON response wrapped in XML

后端 未结 9 1371
清歌不尽
清歌不尽 2020-12-05 20:17

I saw a similar question but it did not resolve my issue. I have a JSON web service in an ASMX file;

The code for the web method

        [WebMethod]         


        
9条回答
  •  情书的邮戳
    2020-12-05 20:49

    Turns out it's not dataType that counts but

    contentType: 'application/json; charset=utf-8'.  
    

    It worked like a charm.

提交回复
热议问题