Pass a user defined object to ASP.NET Webmethod from jQuery, using JSON

后端 未结 2 1201
长情又很酷
长情又很酷 2020-12-01 08:24

I am trying to pass in some simple JSON to an ASP.NET 4.5 Webmethod from jQuery. And it is not working quite the way I want it. It works if I accept the inputs as separate

2条回答
  •  被撕碎了的回忆
    2020-12-01 09:08

    I quickly set up this project and I was able to successfully call my web method, please adjust your code accordingly. Make sure your class property names are the same as the ones that you pass through JavaScript.

    Webservice

        public static Contact getContact(Contact cnt)
        {
            cnt.name = "Abijeet Patro";
            cnt.phone = "Blah Blah";
            return cnt;
        }
    

    JavaScript/jQuery

        $(document).ready(function () {
            var cnt = {name:'Hello',phone:'Hello'};
            $.ajax({
                type: "POST",
                url: "/Default.aspx/getContact",
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                data: JSON.stringify({'cnt':cnt}), // Check this call.
                success: function (data) {
                    debugger;
                }
            });
        });
    

    Class

    public class Contact
    {
        public string name { get; set; }
        public string phone { get; set; }
    }
    

    Web Service Called


    enter image description here

    You can grab the project from here. Also please use fiddler or Chrome to monitor AJAX requests/responses. I've added an image to show how to monitor AJAX requests using Chrome. Fiddler is even better and more detailed.


    enter image description here

提交回复
热议问题