jquery的ajax調用Webservice返回Json數組

來源:互聯網
上載者:User

本文章是利用jquery的ajax調用webservice返回json數組哦,json資料是網頁特效的一種小型輕型資料,即時互動性更強於xml哦。

json資料

{'employee':[{'name':'john','sex':'man','age':'25'},{'name':'tom','sex':'man','age':'21'},{'name':'mary','sex':'woman','age':'21'}]}

 

  //jquery 調用webservice匯入資料
            function loaddata() {
                var studentdata = collectiondata();
                $.ajax({
                    url: "importdataservice.asmx/importstu",
                    type: "post",
                    contenttype: "application/json;charset=utf-8",
                    datatype: "json",
                    data: "{'students':[{'name':'kobe ','sex':'boy','age':'20'},{'name':'mary','sex':'girl','age':'19'}]}",
                    success: function(result) {
                        alert(result.d);
                    },
                    error: function(e) {
                        alert(e.responsetext);
                    }
                });
            }

/// <summary>
        ///
        /// </summary>
        /// <param name="students"></param>
        /// <returns></returns>
        [webmethod]
        [scriptmethod(responseformat=responseformat.json)]
        public string importstu(dictionary<string,string> []students)
        {
            if (students.length == 0)
            {
                return "沒有任何資料!";
            }
            else
            {
                try
                {
                    foreach (dictionary<string, string> stu in students)
                    {
                        //構造一個新的student對象。
                        student student = new student();

                        //為新構造的student對象屬性賦值。
                        foreach (string key in stu.keys)
                        {
                            switch (key)
                            {
                                case "name":
                                    student.name = stu[key];
                                    break;
                                case "sex":
                                    student.sex = stu[key];
                                    break;
                                case "age":
                                    int age;
                                    if (int32.tryparse(stu[key], out age))
                                    {
                                        student.age = age;
                                    }
                                    else
                                    {
                                        student.age = 0;
                                    }
                                    break;
                                default:
                                    break;
                            }
                        }
                    }
                    return "匯入學產生功!";
                }
                catch
                {
                    throw new exception("匯入學生失敗!");
                }
            }
        }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.