讓Web API同時支援多個Get方法
阿新 • • 發佈:2019-02-05
WebApi中多個Get方法請求出錯的問題就不贅述了,不然你也不會來這裡找答案。
思路就是要定義一個constraints去實現:
我們先分析下uri path: api/controller/x,問題就在這裡的x,它有可能代表action也有可能代表id,其實我們就是要區分這個x什麼情況下代表action什麼情況下代表id就可以解決問題了,我是想自己定義一系統的動詞,如果你的actoin的名字是以我定義的這些動詞中的一個開頭,那麼我認為你是action,否則認為你是id。
好,思路說明白了,我們開始實現,先定義一個StartWithConstraint類 :
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Http.Routing; namespace GM360_REWARD_SERVICES.Common { /// <summary> /// 如果請求url如: api/area/controller/x x有可能是actioin或id /// 在url中的x位置出現的是以 get put delete post開頭的字串,則當作action,否則就當作id /// 如果action為空,則把請求方法賦給action /// </summary> public class StartWithConstraint : IHttpRouteConstraint { public string[] array { get; set; } public bool match { get; set; } private string _id = "id"; public StartWithConstraint(string[] startwithArray = null) { if (startwithArray == null) startwithArray = new string[] { "GET", "PUT", "DELETE", "POST", "EDIT", "UPDATE", "AUDIT", "DOWNLOAD" }; this.array = startwithArray; } public bool Match(System.Net.Http.HttpRequestMessage request, IHttpRoute route, string parameterName, IDictionary<string, object> values, HttpRouteDirection routeDirection) { if (values == null) // shouldn't ever hit this. return true; if (!values.ContainsKey(parameterName) || !values.ContainsKey(_id)) // make sure the parameter is there. return true; var action = values[parameterName].ToString().ToLower(); if (string.IsNullOrEmpty(action)) // if the param key is empty in this case "action" add the method so it doesn't hit other methods like "GetStatus" { values[parameterName] = request.Method.ToString(); } else if (string.IsNullOrEmpty(values[_id].ToString())) { var isidstr = true; array.ToList().ForEach(x => { if (action.StartsWith(x.ToLower())) isidstr = false; }); if (isidstr) { values[_id] = values[parameterName]; values[parameterName] = request.Method.ToString(); } } return true; } } }
然後在對應的API路由註冊時,新增第四個引數constraints:
轉載原文:
GlobalConfiguration.Configuration.Routes.MapHttpRoute( this.AreaName + "Api", " api/" + this.AreaName + "/{controller}/{action}/{id}", new { action = RouteParameter.Optional, id = RouteParameter.Optional, namespaceName = new string[] { string.Format("Zephyr.Areas.{0}.Controllers",this.AreaName) } }, new { action = new StartWithConstraint() } );
上面添加了名稱空間,我自己的專案沒有多個專案,所以不需要對名稱空間進行處理
RouteTable.Routes.MapHttpRoute( "RewardServices", "api/{controller}/{action}/{id}", new { action = RouteParameter.Optional, id = RouteParameter.Optional }, new { action=new StartWithConstraint() } );
這樣就實現了,Api控制器中Action的取名就要注意點就是了,不過還算是一個比較完美的解決方案。
不知道原文地址
貼上自己看到的網址:點選開啟連結