ASP.NET MVC 重點教程一周年版 第十回 請求Controller

來源:互聯網
上載者:User

    其實我們通常遇到的請求方式無非get/post,但是有很多Web開發人員仍然對二者分不清。

    get即通過URL中的QueryString向伺服器端傳值的方式,它的資料是可見的,可post則是通過一個postdata包向伺服器傳值,post方式可以傳送更多資料(如上傳檔案),也更安全(如登入)。

    本文將示範各種通過用戶端頁面(即最終產生的頁面)向Controller提交請求以及在Controller中接受的方式。

約定

    本文所有的樣本都將是示範一個登入過程,但並不關注判斷過程,所以判斷方面僅做簡單的IF操作。

    而提交的實體我們建立一個Account類。

它的內容如下:

   1: /// <summary>

   2:  /// 使用者賬戶的實體類

   3:  /// </summary>

   4:  public class Account {

   5:      /// <summary>

   6:      /// 使用者名稱

   7:      /// </summary>

   8:      public string UserName { get; set; }

   9:      /// <summary>

  10:      /// 密碼

  11:      /// </summary>

  12:      public string Password { get; set; }

  13:  }

文中大多數樣本使用了Account類,但並不是所有的樣本都使用了Account。

在文中我們並不關注提交資訊的頁面的Controller,僅關注處理資訊的Controller。

而Controller中存在這樣一個方法,用於輔助判斷:

   1: /// <summary>

   2: /// 一個輔助判斷的方法

   3: /// </summary>

   4: /// <param name="userName">使用者名稱</param>

   5: /// <param name="password">密碼</param>

   6: /// <returns></returns>

   7: string AreEquals(string userName,string password)

   8: {

   9:     return (userName.ToLower() == "admin" && password == "123456").ToString();

  10: }

以Post提交的資料來看傳遞

    之所以這裡先說Post是因為相對於Get方式來說Post的情況更全,說明了Post的情況Get也就差不多了。

View:

   1: <%using (Html.BeginRouteForm(new { controller = "home", action = "process" })) {%>

   2: <p>

   3:     <label>使用者名稱:</label><%=Html.TextBox("username") %></p>

   4: <p>

   5:     <label>密碼:</label><%=Html.TextBox("password") %></p>

   6: <p>

   7:     <input type="submit" /></p>

   8: <%

   9:     }%>

1.從最基本的開始,使用Request擷取提交的資訊

 

 

   1: /// <summary>

   2: /// 處理請求的Action 

   3: /// </summary>

   4: /// <returns></returns>

   5: public ActionResult Process()

   6: {

   7:     return Content(

   8:         AreEquals(Request.Form["username"], Request.Form["password"])

   9:         );

  10: }

    這個無多解釋,通過Request.Form來擷取表單提交我想是最基本的方法之一,如果您對這種方法不瞭解的話,那麼就說明您的ASP.NET基礎有待提交,可以查看ASP.NET五大對象的相關文章。

2.通過Action參數提交

相比之下這個可能更加漂亮些。

   1: /// <summary>

   2: /// 處理請求的Action 

   3: /// </summary>

   4: /// <param name="userName">這兩個參數務必與表單中的名稱一致</param>

   5: /// <param name="password"></param>

   6: /// <returns></returns>

   7: public ActionResult Process(string userName, string password)

   8: {

   9:     return Content(

  10:         AreEquals(userName, password)

  11:         );

  12: }

3.UpdateModel來擷取傳遞

   1: /// <summary>

   2: /// 處理請求的Action 

   3: /// </summary>

   4: /// <returns></returns>

   5: public ActionResult Process()

   6: {

   7:     var a = new Account();

   8:     UpdateModel(a);//確定a包含Password及UserName這兩個屬性即可,否則拋出異常

   9:     return Content(

  10:         AreEquals(a.UserName, a.Password)

  11:         );

  12: }

當然我們這裡很容易出現異常所以可以使用另一個方法來替代,TryUpdateModel:

   1: /// <summary>

   2: /// 處理請求的Action 

   3: /// </summary>

   4: /// <returns></returns>

   5: public ActionResult Process()

   6: {

   7:     var a = new Account();

   8:     //這樣就可以在沒有成功轉換時使用另一種處理方式

   9:     return Content(

  10:         TryUpdateModel(a))?AreEquals(a.UserName, a.Password):bool.FalseString

  11:         );

  12: }

上面這種UpdateModel的方法已經很簡單了,可是ASP.NET MVC為我們提供了更簡單的方式:

4.使用綁定

   1: /// <summary>

   2: /// 處理請求的Action 

   3: /// </summary>

   4: /// <returns></returns>

   5: public ActionResult Process(Account a)

   6: {

   7:     return Content(

   8:         AreEquals(a.UserName, a.Password)

   9:         );

  10: }

就是這麼簡單

 

可能存在的問題

我們在提交表單時可能有多個Account對象,這種情況下我們應該怎麼辦呢。

請看下面:

View:

   1: <%using (Html.BeginRouteForm(new { controller = "home", action = "process" })) {%>

   2: <p>

   3:     <label>使用者名稱1:</label><%=Html.TextBox("a.username") %></p>

   4: <p>

   5:     <label>密碼1:</label><%=Html.TextBox("a.password") %></p>

   6:        <p>

   7:     <label>使用者名稱2:</label><%=Html.TextBox("b.username") %></p>

   8: <p>

   9:     <label>密碼2:</label><%=Html.TextBox("b.password") %></p>

  10: <p>

  11:     <input type="submit" /></p>

  12: <%

  13:     }%>

注意這裡的表單元素的Name、

下面是處理的Action代碼:

   1: /// <summary>

   2:  /// 處理請求的Action 

   3:  /// </summary>

   4:  /// <returns></returns>

   5:  public ActionResult Process(Account a ,Account b)

   6:  {

   7:   //處理代碼

   8:      return View();

   9:  }

這就一切OK了

相關文章

聯繫我們

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