cshtml 파일이 다음과 같다고 가정해 보겠습니다. 코드 복사 코드는 다음과 같습니다. <br> $(document).ready(function(){<br> $("#btn").click(function(){<br> > url: "/Home/MyAjax",<br> 데이터: {<br> val1: $("#txt1").val(),<br> val2: $("#txt2").val(), <br> val3: $("#txt3"). val(),<br> val4: $("#txt4").val(),<br> },<br> dataType: "json"<br> });<br> <입력 ID=" txt1" type="text" value="" /><br><input id="txt2" type="text" value="" /><br><input id ="txt3" type= "text" value="" /><br><input id="txt4" type="text" value="" /><br><br><br> <br>데이터는 json 데이터입니다. 전달된 Action은 /Home/MyAjax입니다. 그러면 Action 메소드에서 받는 방법은 다음과 같습니다. <br> <br><br> </div> <p>코드 복사</p> <p></p> <div class="codetitle"> 코드는 다음과 같습니다.<span><a style="CURSOR: pointer" data="55342" class="copybut" id="copybut55342" onclick="doCopy('code55342')"><u>public ActionResult MyAjax(string val1) val2 = Request["val2"].ToString();</u> string val3 = Request.Form["val3"].ToString();</a> string val4 = Request.Params["val4"]. ToString() ;</span> return Content("ViewUserControl1"); </div> 또는 수신 매개변수는 동일한 효과를 갖는 FormCollection입니다. <div class="codebody" id="code55342"> <br><br><br><br><br>코드 복사<br><br> </div> 코드는 다음과 같습니다.<p></p> public ActionResult MyAjax(FormCollection f) {<p> string val2 = f["val2"].ToString();</p> <div class="codetitle"> string val3 = f["val3"].ToString();<span> string val4 = f["val4"].ToString(); <a style="CURSOR: pointer" data="33316" class="copybut" id="copybut33316" onclick="doCopy('code33316')"> return Content("ViewUserControl1");<u> }</u></a></span> </div> MVC3의 장점은 변수 매개변수 명명 일치 메커니즘을 기반으로 한다는 것입니다. 즉, 동일한 변수 이름을 가진 값을 찾으려고 최선을 다한다는 것입니다. 위의 예에서는 다음과 같이 클래스를 구성할 수도 있습니다. public class aclass {<div class="codebody" id="code33316"> <br><br><br><br><br>코드 복사<br><br> </div> 코드는 다음과 같습니다.<p></p> public string val1 { set } <p> 공개 문자열 val2 { 설정; }</p> <div class="codetitle"> 공개 문자열 Val3 { 설정; }<span>}<a style="CURSOR: pointer" data="72837" class="copybut" id="copybut72837" onclick="doCopy('code72837')"><u> </u>그런 다음 매개변수 유형을 aclass로 설정할 수 있습니다</a> </span> </div> <div class="codebody" id="code72837"> <br><br>코드 복사<br><br><br> 코드는 다음과 같습니다.<br><div class="codebody" id="code54274"> <br> public ActionResult MyAjax(aclass f) {<br> return Content(f.val1 f.val2 f.val3 f.val4);<br> }<br> </div> <p>aclass 클래스의 속성 이름은 json 키의 이름과 일치하므로 매우 강력합니다. </p> </div>