0

我正在使用剑道上传控制。这里我将文件发送到控制器。从那里我调用 web api mentod 将文件保存到数据库中。现在我的问题是当我上传 3mb 文件时,它正在上传。如果我想上传超过 3mb 的文件,它不会上传。我的控制器代码是这样的。

byte[] fileData = null;
//Fetches the uploaded file
var httpPostedFileBase = Request.Files[0];
//Reads file data in Binary
if (httpPostedFileBase != null)
using (var binaryReader = new BinaryReader(httpPostedFileBase.InputStream))
{
     fileData = binaryReader.ReadBytes(httpPostedFileBase.ContentLength);
}
//Create BO to save file in DB
var postedFileBase = Request.Files[0];
UploadFiles upload=new UploadFiles();
Docs doc = new Docs {ID = Id, Content = fileData};
if (postedFileBase != null) contractDoc.FileName = postedFileBase.FileName;

最后我打电话给 webapi 电话。在 webapi 我得到了错误。

4

0 回答 0