其他分享
首页 > 其他分享> > .NET Framework webAPI上传文件大小限制

.NET Framework webAPI上传文件大小限制

作者:互联网

提供给小程序的接口接收不了大文件参数,即便是使用post也不行,emmm,我这边采用的是[FromBody]接收参数,先来看下接口:

[HttpPost]
public HttpResponseMessage Upload([FromBody] string fileBase64)
{           
}

中间曲折的过程就不谈了,直接说下解决方法,找到web.config,加句配置即可,emmm,好简单

<system.web> <httpRuntime targetFramework="4.5" maxQueryStringLength="102400" maxRequestLength="102400" maxUrlLength="102400" />

 


 

note:看了看文档,说是在web.config配置文件中的<system.webServer>节点中做配置也行,我没试,有兴趣的可以试下

<system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="" maxQueryString="" maxUrl=""/>

 

标签:webAPI,文件大小,web,emmm,FromBody,接口,Framework,接收,config
来源: https://www.cnblogs.com/qtiger/p/13863183.html