webapi接口上传大文件

Posted 远方V3

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webapi接口上传大文件相关的知识,希望对你有一定的参考价值。

通过WebApi或者MVC模式的接口上传文件时,总数报错

413 Request Entity Too Large IIS

404 服务未找到

解决方法:

clipboard

1. 在web.config文件下找到system.webSever 节点下面增加,maxAllowedContentLenth 文件上传的长度

<security>

<requestFiltering>

<requestLimits maxAllowedContentLength="2147483648"></requestLimits>

</requestFiltering>

</security>

2. 设置上传文件大小

<system.web>

<httpRuntime targetFramework="4.7.2" maxQueryStringLength="1204800" maxUrlLength="1409600" maxRequestLength="67108864" />

</system.web>

以上是关于webapi接口上传大文件的主要内容,如果未能解决你的问题,请参考以下文章

怎么为自己的网站编写api接口

webapi是啥意思

WEB API - 大字节数组问题

怎样操作WebAPI接口

怎样操作WebAPI接口

c#webapi怎么调用接口并传参数