真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

ASP.NETWEBAPI之屬性路由的示例分析-創(chuàng)新互聯(lián)

這篇文章主要介紹ASP.NET WEB API之屬性路由的示例分析,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

創(chuàng)新互聯(lián)公司是專業(yè)的防城港網(wǎng)站建設(shè)公司,防城港接單;提供成都網(wǎng)站設(shè)計、成都網(wǎng)站制作,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行防城港網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊,希望更多企業(yè)前來合作!

以下為常規(guī)MVC路由

 config.Routes.MapHttpRoute(
        name: "DefaultApi",
        routeTemplate: "api/{controller}/{id}",
        defaults: new { id = RouteParameter.Optional },
      );

如果我們要實現(xiàn)類似以下效果路由的話,使用常規(guī)公約路由比較麻煩。

order/Miles/三只松鼠干果/2袋
order/2017/1/13

如果使用屬性路由的話就比較簡單了。


新建WEB API項目的話,打開App_Start目錄下的WebApiConfig.cs文件添加以下代碼開啟屬性路由配置。

 config.MapHttpAttributeRoutes();

屬性路由也可以和公約路由混合使用,如下:

 public static void Register(HttpConfiguration config)
    {
      // Web API 配置和服務(wù)

      // Web API 路由
      config.MapHttpAttributeRoutes();

      config.Routes.MapHttpRoute(
        name: "DefaultApi",
        routeTemplate: "api/{controller}/{id}",
        defaults: new { id = RouteParameter.Optional },
        constraints: new { id=@"\d+"}
      );
    }

在要使用屬性路由的方法上打上特性標(biāo)記,如下 :

 [Route("order/{UserNickName}/{ProductName}/{count}")]

測試結(jié)果(URL經(jīng)過了編碼,不然會報400錯誤。)

ASP.NET WEB API之屬性路由的示例分析


通常情況下,在同一個控制器中的所有路由以相同的前綴開頭

  [Route("api/books")]
  [Route("api/books/{id:int}")]
  [Route("api/books")]

這樣很明顯是比較麻煩的。所以我們用[RoutePrefix]屬性來設(shè)置一個公共的前綴

ASP.NET WEB API之屬性路由的示例分析

測試結(jié)果

ASP.NET WEB API之屬性路由的示例分析

如果使用了[RoutePrefix]的話,某些比較特殊的api,我們可以使用波浪線來重寫路由前綴,如下:

ASP.NET WEB API之屬性路由的示例分析

測試結(jié)果(同一個類下)

ASP.NET WEB API之屬性路由的示例分析

路由前綴中也可以包含參數(shù),如下

ASP.NET WEB API之屬性路由的示例分析

測試結(jié)果

ASP.NET WEB API之屬性路由的示例分析


可以在路由中添加參數(shù)約束,如下

ASP.NET WEB API之屬性路由的示例分析

測試結(jié)果

ASP.NET WEB API之屬性路由的示例分析

如果參數(shù)不是Int類型,則不會匹配到該路由


以下都是一些會被支持到的約束

ASP.NET WEB API之屬性路由的示例分析

可以使用多個約束,但是要用冒號分開

[Route("users/{id:int:length(1,3)}")]
public User GetUserById(int id) { ... }

結(jié)果

ASP.NET WEB API之屬性路由的示例分析

如果不在范圍內(nèi)的話則匹配不到

ASP.NET WEB API之屬性路由的示例分析

自定義路由約束,需要實現(xiàn)IHttpRouteConstraint接口,具體查看官方

public class NonZeroConstraint : IHttpRouteConstraint
{
  public bool Match(HttpRequestMessage request, IHttpRoute route, string parameterName, 
    IDictionary values, HttpRouteDirection routeDirection)
  {
    object value;
    if (values.TryGetValue(parameterName, out value) && value != null)
    {
      long longValue;
      if (value is long)
      {
        longValue = (long)value;
        return longValue != 0;
      }

      string valueString = Convert.ToString(value, CultureInfo.InvariantCulture);
      if (Int64.TryParse(valueString, NumberStyles.Integer, 
        CultureInfo.InvariantCulture, out longValue))
      {
        return longValue != 0;
      }
    }
    return false;
  }
}

注冊約束

public static class WebApiConfig
{
  public static void Register(HttpConfiguration config)
  {
    var constraintResolver = new DefaultInlineConstraintResolver();
    constraintResolver.ConstraintMap.Add("nonzero", typeof(NonZeroConstraint));

    config.MapHttpAttributeRoutes(constraintResolver);
  }
}

使用約束

[Route("{id:nonzero}")]
public HttpResponseMessage GetNonZero(int id) { ... }

可選的URI參數(shù)和默認(rèn)值


你可以通過添加一個問號標(biāo)記路由參數(shù)使成為一個可選的URI參數(shù)。如果一個路由參數(shù)是可選的,你必須為這個方法參數(shù)定義一個默認(rèn)值。

public class BooksController : ApiController
{
  [Route("api/books/locale/{lcid:int?}")]
  public IEnumerable GetBooksByLocale(int lcid = 1033) { ... }
}

或者在路由模版中定義默認(rèn)值

public class BooksController : ApiController
{
  [Route("api/books/locale/{lcid=1033}")]
  public IEnumerable GetBooksByLocale(int lcid) { ... }
}

以上是“ASP.NET WEB API之屬性路由的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


新聞標(biāo)題:ASP.NETWEBAPI之屬性路由的示例分析-創(chuàng)新互聯(lián)
轉(zhuǎn)載來源:http://weahome.cn/article/doopdj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部