摘要: .netcore接口文件上传时,有时需要限制上传文件大小,只需要在请求接口中加入RequestSizeLimit特性即可 WebApiResult为自定义返回值 /// <summary> /// 上传图片,限制大小为30M /// </summary> /// <param name="files 阅读全文
posted @ 2020-08-10 16:23 低调码农哥! 阅读(2697) 评论(1) 推荐(0)
摘要: 右键项目->属性->Nuget包管理 添加Swashbuckle.AspNetCore引用 添加服务注入 public void ConfigureServices(IServiceCollection services) { services.AddControllers(); services. 阅读全文
posted @ 2020-08-10 11:03 低调码农哥! 阅读(654) 评论(0) 推荐(0)