MVC Ajax Helpers

在MVC中要实现Ajax有很多的方式,有微软自己的MicrosoftAjax,也可以用JQuery的AJax来实现,如果对其他的JavaScript框架熟悉,还可以采用其他的实现方案,比如说Prototype等等。

以下是微软自己的实现方案。

需要预先加载的JavaScript文件:

1  <script src="@Url.Content("~/Scripts/MicrosoftAjax.js")" type="text/javascript"></script>
2  <script src="@Url.Content("~/Scripts/MicrosoftMvcAjax.js")" type="text/javascript"></script>

在MVC中已经提供了下面几个现成的HTML Hepler:

  • Ajax.ActionLink()
  • Ajax.BeginForm()
  • Ajax.RouteLink()
  • Ajax.BeginRouteForm()

Ajax.ActionLink

使用ActionLink发送异步请求的方法:

View

1 <div id="myPnl" style="width: 300px; height: 30px; border: 1px dotted silver;">
2 </div>
3 @Ajax.ActionLink("Click Me", "GetTime", new AjaxOptions { UpdateTargetId = "myPnl" })

Controller

1 public ActionResult GetTime()
2 {
3     return Content(DateTime.Now.ToString());
4 }

以上示例使用ActionLink超链接发送请求到GetTime,返回一个ContentResult,通过AjaxOptions中的UpdateTargetId属性指定了需要更新的页面元素。

AjaxOptions中还有其他可以指定的属性:

Confirm 等效于javascript中的return confirm(msg),在点击该链接时先提示需要确认的信息。
HttpMethod 指定使用Get或者是Post方式发送Http请求
InsertMode 指定使用哪一种方式在指定的UpdateTargetId元素更新数据,可以有三种方式: "InsertAfter", "InsertBefore", or "Replace" 。默认为:Replace
LoadingElementDuration Loading元素显示的时间
LoadingElementId 可以指定在Http请求期间显示的Loading元素
OnBegin 在Http请求之前执行的javascript方法
OnComplete 在Http请求结束时执行的方法
OnFailure 在Http请求失败时执行的方法
OnSuccess 在Http请求成功时执行的方法
UpdateTargetId Http请求更新的页面元素
Url Http请求的Url

关于AjaxOptions中各方法的使用方法,在之前关于ActionResult的介绍的文章中有相关的列子:

JsonResult

注意点

  • OnComplete和OnSuccess的区别:OnComplete是获取了Http请求时引发的,此时页面还没有进行更新,OnSuccess是在页面已经更新后引发的。
  • ActionLink中的actionName和AjaxOption中的Url的关系:两者分别产生的HTML如下,但是执行的结果相同,希望有高手能解释下这两者有无区别。
1 <a href="/Home/GetTime" data-ajax-update="#myPnl" data-ajax-mode="replace" data-ajax="true">Click Me</a> 
2 <a href="/" data-ajax-url="Home/GetTime" data-ajax-update="#myPnl" data-ajax-mode="replace" data-ajax="true">Click Me</a>

Ajax.BeginForm

该Html Hepler可以实现使用Ajax方式提交Form,在指定的页面元素中显示提交的结果。

View

 1 @model MvcAjax.Models.UserModel
 2 @{
 3     ViewBag.Title = "AjaxForm";
 4 }
 5 
 6 <div id="myPnl" style="width: 300px; height: 30px; border: 1px dotted silver;">
 7 </div>
 8 
 9 @using (Ajax.BeginForm("SaveUser", new AjaxOptions { UpdateTargetId = "myPnl" }))
10 {
11     <table>
12         <tr>
13             <td>
14                 @Html.LabelFor(m => m.UserName)
15             </td>
16             <td>
17                 @Html.TextBoxFor(m => m.UserName)
18             </td>
19         </tr>
20         <tr>
21             <td>
22                 @Html.LabelFor(m => m.Email)
23             </td>
24             <td>
25                 @Html.TextBoxFor(m => m.Email)
26             </td>
27         </tr>
28         <tr>
29             <td>
30                 @Html.LabelFor(m => m.Desc)
31             </td>
32             <td>
33                 @Html.TextBoxFor(m => m.Desc)
34             </td>
35         </tr>
36         <tr>
37             <td colspan="2">
38                 <input type="submit" value="Submit" />
39             </td>
40         </tr>
41     </table>
42 } 

Model

 1 using System.ComponentModel.DataAnnotations;
 2 
 3 namespace MvcAjax.Models
 4 {
 5     public class UserModel
 6     {
 7         [Display(Name = "Username")]
 8         public string UserName { get; set; }
 9 
10         [Display(Name = "Email")]
11         public string Email { get; set; }
12 
13         [Display(Name = "Description")]
14         public string Desc { get; set; }
15     }
16 }

Controller

 1 public ActionResult AjaxForm()
 2 {
 3     return View();
 4 }
 5 
 6 [HttpPost]
 7 public ActionResult SaveUser(UserModel userModel)
 8 {
 9     //Save User Code Here
10     //......
11 
12     return Content("Save Complete!");
13 }

以上示例代码实现了采用Ajax提交Form数据的大概方法,在Ajax.BeginForm中同样使用AjaxOptions来设置Ajax请求的参数,和Ajax.ActionLink中的使用方法相同。

其他:

介绍JavaScriptResult时曾经提到了该ActionResult在普通的请求中是直接当作文件Reponse出的,但是在Ajax请求中,便可以使用该Result,并且执行Result中的JavaScript。

比如将上面的Conntroller更改为以下代码:

1 [HttpPost]
2 public ActionResult SaveUser(UserModel userModel)
3 {
4     //Save User Code Here
5     //......
6 
7     //return Content("Save Complete!");
8     return JavaScript("alert('Save Complete!');");
9 }  

便可在执行改Ajax请求之后执行JavaScriptResult中的语句。

 

posted @ 2017-07-03 10:46  FelixWang  阅读(269)  评论(0编辑  收藏  举报