91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ASP.NET中怎么配置MvcOptions

發布時間:2021-07-15 14:43:21 來源:億速云 閱讀:237 作者:Leah 欄目:移動開發

這篇文章將為大家詳細講解有關ASP.NET中怎么配置MvcOptions,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

 程序模型處理 IApplicationModelConvention

在MvcOptions的實例對象上,有一個ApplicationModelConventions屬性(類型是:List),該屬性IApplicationModelConvention類型的接口集合,用于處理應用模型ApplicationModel,該集合是在MVC程序啟動的時候進行調用,所以在調用之前,我們可以對其進行修改或更新,比如,我們可以針對所有的Controller和Action在數據庫中進行授權定義,在程序啟動的時候讀取數據授權信息,然后對應用模型ApplicationModel進行處理。  示例如下:

  1. public class PermissionCheckApplicationModelConvention : IApplicationModelConvention 

  2.     public void Apply(ApplicationModel application) 

  3.     { 

  4.         foreach (var controllerModel in application.Controllers) 

  5.         { 

  6.             var controllerType = controllerModel.ControllerType; 

  7.             var controllerName = controllerModel.ControllerName; 

  8.  

  9.             controllerModel.Actions.ToList().ForEach(actionModel => 

  10.             { 

  11.                 var actionName = actionModel.ActionName; 

  12.                 var parameters = actionModel.Parameters; 

  13.  

  14.                 // 根據判斷條件,操作修改actionModel 

  15.             }); 

  16.  

  17.             // 根據判斷條件,操作修改ControllerModel 

  18.         } 

  19.     } 

  20. }

視圖引擎的管理ViewEngines

在MvcOptions的實例對象中,有一個ViewEngines屬性用于保存系統的視圖引擎集合,以便可以讓我們實現自己的自定義視圖引擎,比如在《自定義View視圖文件查找邏輯》章節中,我們就利用了該特性,來實現了自己的自定義視圖引擎,示例如下:

services.AddMvc().Configure(options => {     options.ViewEngines.Clear();     options.ViewEngines.Add(typeof(ThemeViewEngine)); });

Web API中的輸入(InputFormater)/輸出(OutputFormater)

輸入

Web API和目前的MVC的輸入參數的處理,目前支持JSON和XML格式,具體的處理類分別如下:

JsonInputFormatter XmlDataContractSerializerInputFormatter

輸出

在Web API中,默認的輸出格式化器有如下四種:

HttpNoContentOutputFormatter StringOutputFormatter JsonOutputFormatter XmlDataContractSerializerOutputFormatter

上述四種在系統中,是根據不同的情形自動進行判斷輸出的,具體判斷規則如下:

如果是如下類似的Action,則使用HttpNoContentOutputFormatter返回204,即NoContent。

  1. public Task DoSomethingAsync() 

  2.     // 返回Task 

  3.  

  4. public void DoSomething() 

  5.     // Void方法 

  6.  

  7. public string GetString() 

  8.     return null; // 返回null 

  9.  

  10. public List GetData() {     return null; // 返回null }

如果是如下方法,同樣是返回字符串,只有返回類型是string的Action,才使用StringOutputFormatter返回字符串;返回類型是object的Action,則使用JsonOutputFormatter返回JSON類型的字符串數據

public object GetData() {     return"The Data";  // 返回JSON }  public string GetString() {     return"The Data";  // 返回字符串 }

如果上述兩種類型的Action都不是,則默認使用JsonOutputFormatter返回JSON數據,如果JsonOutputFormatter格式化器通過如下語句被刪除了,那就會使用XmlDataContractSerializerOutputFormatter返回XML數據。

services.Configure(options =>     options.OutputFormatters.RemoveAll(formatter => formatter.Instance is JsonOutputFormatter) )

當然,你也可以使用ProducesAttribute顯示聲明使用JsonOutputFormatter格式化器,示例如下。

  1. public class Product2Controller : Controller 

  2.     [Produces("application/json")] 

  3.     //[Produces("application/xml")] 

  4.     public Product Detail(int id) 

  5.     { 

  6.         return new Product() { ProductId = id, ProductName = "商品名稱" }; 

  7.     } 

  8. }

或者,可以在基類Controller上,也可以使用ProducesAttribute,示例如下:

  1. [Produces("application/json")] 

  2.     public class JsonController : Controller { } 

  3.  

  4.     public class HomeController : JsonController 

  5.     { 

  6.         public List GetMeData()         {             return GetDataFromSource();         }     }

當然,也可以在全局范圍內聲明該ProducesAttribute,示例如下:

  1. services.Configure(options =>         options.Filters.Add(newProducesAttribute("application/json"))     );

Output Cache 與 Profile

在MVC6中,OutputCache的特性由ResponseCacheAttribute類來支持,示例如下:

  1. [ResponseCache(Duration = 100)] 

  2. public IActionResult Index() 

  3.     return Content(DateTime.Now.ToString()); 

  4. }

上述示例表示,將該頁面的內容在客戶端緩存100秒,換句話說,就是在Response響應頭header里添加一個Cache-Control頭,并設置max-age=100。  該特性支持的屬性列表如下:

ASP.NET中怎么配置MvcOptions

另外,ResponseCacheAttribute還支持一個CacheProfileName屬性,以便可以讀取全局設置的profile信息配置,進行緩存,示例如下:

[ResponseCache(CacheProfileName = "MyProfile")] public IActionResult Index() {     return Content(DateTime.Now.ToString()); }  public void ConfigureServices(IServiceCollection services) {     services.Configure(options =>     {         options.CacheProfiles.Add("MyProfile",             new CacheProfile             {                 Duration = 100             });     }); }

通過向MvcOptions的CacheProfiles屬性值添加一個名為MyProfile的個性設置,可以在所有的Action上都使用該配置信息。

關于ASP.NET中怎么配置MvcOptions就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宣化县| 忻城县| 曲水县| 天气| 响水县| 金山区| 沧州市| 宿州市| 石阡县| 阿拉善右旗| 兰溪市| 红原县| 玉树县| 怀宁县| 濮阳县| 澄迈县| 罗城| 福海县| 靖远县| 岢岚县| 吉木萨尔县| 合水县| 黄浦区| 永州市| 杂多县| 临汾市| 北票市| 宝应县| 阿鲁科尔沁旗| 姚安县| 柯坪县| 左云县| 涟水县| 蛟河市| 铁岭县| 吴桥县| 黔南| 香格里拉县| 巴里| 盈江县| 淳安县|