博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解读ASP.NET 5 & MVC6系列(15):MvcOptions配置
阅读量:5016 次
发布时间:2019-06-12

本文共 4594 字,大约阅读时间需要 15 分钟。

原文:

程序模型处理 IApplicationModelConvention

MvcOptions的实例对象上,有一个ApplicationModelConventions属性(类型是:List<IApplicationModelConvention>),该属性IApplicationModelConvention类型的接口集合,用于处理应用模型ApplicationModel,该集合是在MVC程序启动的时候进行调用,所以在调用之前,我们可以对其进行修改或更新,比如,我们可以针对所有的Controller和Action在数据库中进行授权定义,在程序启动的时候读取数据授权信息,然后对应用模型ApplicationModel进行处理。 示例如下:

public class PermissionCheckApplicationModelConvention : IApplicationModelConvention{    public void Apply(ApplicationModel application)    {        foreach (var controllerModel in application.Controllers)        {            var controllerType = controllerModel.ControllerType;            var controllerName = controllerModel.ControllerName;            controllerModel.Actions.ToList().ForEach(actionModel =>            {                var actionName = actionModel.ActionName;                var parameters = actionModel.Parameters;                // 根据判断条件,操作修改actionModel            });            // 根据判断条件,操作修改ControllerModel        }    }}

视图引擎的管理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格式,具体的处理类分别如下:

JsonInputFormatterXmlDataContractSerializerInputFormatter

输出

在Web API中,默认的输出格式化器有如下四种:

HttpNoContentOutputFormatterStringOutputFormatterJsonOutputFormatterXmlDataContractSerializerOutputFormatter

上述四种在系统中,是根据不同的情形自动进行判断输出的,具体判断规则如下:

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

public Task DoSomethingAsync(){    // 返回Task}public void DoSomething(){    // Void方法}public string GetString(){    return null; // 返回null}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格式化器,示例如下。

public class Product2Controller : Controller{    [Produces("application/json")]    //[Produces("application/xml")]    public Product Detail(int id)    {        return new Product() { ProductId = id, ProductName = "商品名称" };    }}

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

[Produces("application/json")]    public class JsonController : Controller { }    public class HomeController : JsonController    {        public List GetMeData()        {            return GetDataFromSource();        }    }

当然,也可以在全局范围内声明该ProducesAttribute,示例如下:

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

Output Cache 与 Profile

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

[ResponseCache(Duration = 100)]public IActionResult Index(){    return Content(DateTime.Now.ToString());}

上述示例表示,将该页面的内容在客户端缓存100秒,换句话说,就是在Response响应头header里添加一个Cache-Control头,并设置max-age=100。 该特性支持的属性列表如下:

属性名称 描述
Duration 缓存时间,单位:秒,示例:Cache-Control:max-age=100
NoStore true则设置Cache-Control:no-store
VaryByHeader 设置Vary header头
Location 缓存位置,如将Cache-Control设置为public, private或no-cache。

另外,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 }); });}

通过向MvcOptionsCacheProfiles属性值添加一个名为MyProfile的个性设置,可以在所有的Action上都使用该配置信息。

其它我们已经很熟悉的内容

以下内容我们可能都已经非常熟悉了,因为在之前的MVC版本中都已经使用过了,这些内容均作为MvcOptions的属性而存在,具体功能列表如下(就不一一叙述了):

  1. Filters
  2. ModelBinders
  3. ModelValidatorProviders
  4. ValidationExcludeFilters
  5. ValueProviderFactories

另外两个:

MaxModelValidationErrors
置模型验证是显示的最大错误数量。

RespectBrowserAcceptHeader

在使用Web API的内容协定功能时,是否遵守Accept Header的定义,默认情况下当media type默认是*/*的时候是忽略Accept header的。如果设置为true,则不忽略。

同步与推荐

本文已同步至目录索引:

posted on
2015-06-01 09:53 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/lonelyxmas/p/4543280.html

你可能感兴趣的文章
LeetCode-Binary Tree Level Order Traversal
查看>>
yii2 源码分析1从入口开始
查看>>
Away3D基础之摄像机
查看>>
Leetcode 128. Longest Consecutive Sequence
查看>>
程序员必须知道的几个Git代码托管平台
查看>>
C# 线程手册 第五章 扩展多线程应用程序 - 什么是线程池
查看>>
考研路茫茫--单词情结 - HDU 2243(AC自动机+矩阵乘法)
查看>>
HTTP运行期与页面执行模型
查看>>
tableView优化方案
查看>>
近期思考(2019.07.20)
查看>>
做最好的自己(Be Your Personal Best)
查看>>
css定位position属性深究
查看>>
android中不同版本兼容包的区别
查看>>
xml
查看>>
在 mvc4 WebApi 中 json 的 跨域访问
查看>>
敏捷开发文章读后感
查看>>
xposed获取context 的方法
查看>>
He who hesitates is Lost
查看>>
关于<form> autocomplete 属性
查看>>
LeetCode:组合总数III【216】
查看>>