AJAX,JSON與MVC

來源:互聯網
上載者:User

有幾個特殊之處

1. MVC架構中包含了一個特殊的JSONActionResult,可以直接返回JSON對象,注意它的格式與之前的asmx和頁面靜態方法都不一樣,它直接就是一個JSON對象

2. 服務端和用戶端編程都相對簡單了。伺服器端無須明確序列化,而用戶端也無須解析JSON字串了,因為返回的結果本來就是一個JSON對象

 

第一部分:Controller中的設計

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;namespace MvcApplication1.Controllers{    public class Employee    {        public int Id { get; set; }        public string Name { get; set; }    }    [HandleError]    public class HomeController : Controller    {        public ActionResult Index()        {            ViewData["Message"] = "Welcome to ASP.NET MVC!";            return View();        }        public ActionResult About()        {            return View();        }        public ActionResult Employee() {            return View();        }        [HttpPost]        public ActionResult GetEmployee() {            return Json(new Employee()            {                Id = 1,                Name = "chenxizhang"            });        }                    }}

第二部分:View中的設計

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %><asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">    GetEmployee</asp:Content><asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">    <script src="../../Scripts/jquery-1.3.2-vsdoc.js" type="text/javascript"></script>    <script type="text/javascript" language="javascript">        $(function() {            $("#bt").click(function() {                $.ajax({                    type: "POST",                    contentType: "application/json",                    url: "http://localhost:44203/Home/GetEmployee",                    data: "{}",                    dataType: 'json',                    success: function(result) {                        alert(result.Id);                    }                });            });        });        </script>    <h2>        GetEmployee</h2>    <input type="button" value="Invoke" id="bt" />    <div id="info">    </div></asp:Content>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.