zoukankan      html  css  js  c++  java
  • asp.net 中webapi读取参数对象和.net core的区别

    asp.net 中读取webapi中的post对象参数时候需要使用[FromBody],读取get的参数要用到[FromUri]

    例如

     [System.Web.Http.HttpGet]
     public object GetPage([FromUri]ProductSearchInput input)
    {
    ...
    }
     [System.Web.Http.HttpPost]
     public bool TranslateApi([FromBody]TranslateInput input)
     {
    ...
     }

    但是在.net core中post相同,但是get的时候不同,使用[FromQuery]

    [HttpGet("/GetTest")]
     public async Task<string> Get([FromQuery] string projectCode)
    {
    ...
    }

    在.net core 中如果post数据量太大或者参数过多会出现错误,可以通过在ConfigureServices注入设置解决。

     public IServiceProvider ConfigureServices(IServiceCollection services)
            {
                //扩大接口能接收的post容量
                services.Configure<FormOptions>(options =>
                {
                    options.ValueCountLimit = 2000; // 2000 items max
                    options.ValueLengthLimit = 1024 * 1024 * 100; // 100MB max len form data
                });
                return services.AddAbp<ProductWebHostModule>();
            }

    .net core 中可以自动将接口中post的json数据转换成参数对象,如果json中没有对象的某个字段,那么该字段会自动设置为null。这里需要注意,.net core严格执行参数检查,所以post的json的字段数据类型需要与参数对象的字段数据类型一致,否则会导致整个自动反序列化失败而使得整个参数对象的全部字段数据都为空。

  • 相关阅读:
    Aster寻路算法1(转)
    谈谈项目纵向项目验收
    要有兴趣
    用c# 操作 文件的方法
    使用ACT进行测试
    Generated servlet error: keyword cannot be resolved or is not a type
    米尔顿艾瑞克森的催眠引导词
    c# webcliend 来制作 网页搜捕器
    网页木马的解决方案
    用Swing实现数据表格功能
  • 原文地址:https://www.cnblogs.com/KQNLL/p/10187805.html
Copyright © 2011-2022 走看看