上传文件 ASP.NET 5
Upload file ASP.NET 5
我正在尝试在 ASP.NET 5 中上传文件,但我在互联网上看到的两种方法都失败了。
对于 XMLHttpRequest,这里是我的服务器端代码:
public async Task<ActionResult> UploadSWF()
{
StreamReader reader = new StreamReader(Request.Body);
var text = await reader.ReadToEndAsync();
return View();
}
[编辑 1]:我的客户端:
var client = new XMLHttpRequest();
function upload()
{
var file = document.getElementById("uploadfile");
var formData = new FormData();
formData.append("upload", file.files[0]);
client.open("post", "/Home/UploadSWF", true);
//client.setRequestHeader("Content-Type", "multipart/form-data");
client.setRequestHeader("Content-Type", "application/x-shockwave-flash");
client.send(formData);
}
但我唯一能从中得到的是:
------WebKitFormBoundaryX1h5stVbtaNe6nFw
Content-Disposition: form-data; name="upload"; filename="data.swf"
Content-Type: application/x-shockwave-flash
CWS
;"
[编辑 2]:这是我如何得到这个的代码:
public ActionResult UploadSWF()
{
Stream bodyStream = Context.Request.Body;
var sr = new StreamReader(bodyStream);
var test = sr.ReadToEnd();
return View();
}
所以我得到了文件名和内容类型,但没有得到它的内容。
这个答案 正在将流复制到文件中,但是文件创建部分对我不起作用,我不知道发生了什么,但没有任何反应。所以我尝试对 MemoryStream 做同样的事情,但我得到了一个空字符串。
所以最后我尝试了另一种方法,使用 IFormFile 如下所示:https://github.com/aspnet/Mvc/blob/437eb93bdec0d9238d672711ebd7bd3097b6537d/test/WebSites/ModelBindingWebSite/Controllers/FileUploadController.cs
这个接口应该在 Microsoft.AspNet.Http 中,我已经添加到我的项目中,但我仍然无法访问它。我在这个命名空间中看不到任何 IFormFile。
[编辑 1]:我尝试的第一种方法是使用 HttpPostedFileBase,就像我在 ASP.NET MVC 5 中使用的那样,但它在我的 vNext 项目。我总是遇到 MissingMethodException。
我在客户端的代码是:
<form action="/home/UploadSWF" method="POST" enctype="multipart/form-data">
<input type="file" name="file" accept=".swf, application/x-shockwave-flash/*">
<input type="submit" name="submit" />
</form>
在我的控制器中:
public ActionResult UploadSWF(HttpPostedFileBase file)
{
return View();
}
IFormFile
作为 beta3 版本的一部分引入。您可能有过时的软件包。检查您的 project.json
并确保您使用的是 beta3(或更新版本)软件包。
我正在尝试在 ASP.NET 5 中上传文件,但我在互联网上看到的两种方法都失败了。 对于 XMLHttpRequest,这里是我的服务器端代码:
public async Task<ActionResult> UploadSWF()
{
StreamReader reader = new StreamReader(Request.Body);
var text = await reader.ReadToEndAsync();
return View();
}
[编辑 1]:我的客户端:
var client = new XMLHttpRequest();
function upload()
{
var file = document.getElementById("uploadfile");
var formData = new FormData();
formData.append("upload", file.files[0]);
client.open("post", "/Home/UploadSWF", true);
//client.setRequestHeader("Content-Type", "multipart/form-data");
client.setRequestHeader("Content-Type", "application/x-shockwave-flash");
client.send(formData);
}
但我唯一能从中得到的是:
------WebKitFormBoundaryX1h5stVbtaNe6nFw Content-Disposition: form-data; name="upload"; filename="data.swf" Content-Type: application/x-shockwave-flash CWS ;"
[编辑 2]:这是我如何得到这个的代码:
public ActionResult UploadSWF()
{
Stream bodyStream = Context.Request.Body;
var sr = new StreamReader(bodyStream);
var test = sr.ReadToEnd();
return View();
}
所以我得到了文件名和内容类型,但没有得到它的内容。
这个答案 正在将流复制到文件中,但是文件创建部分对我不起作用,我不知道发生了什么,但没有任何反应。所以我尝试对 MemoryStream 做同样的事情,但我得到了一个空字符串。
所以最后我尝试了另一种方法,使用 IFormFile 如下所示:https://github.com/aspnet/Mvc/blob/437eb93bdec0d9238d672711ebd7bd3097b6537d/test/WebSites/ModelBindingWebSite/Controllers/FileUploadController.cs 这个接口应该在 Microsoft.AspNet.Http 中,我已经添加到我的项目中,但我仍然无法访问它。我在这个命名空间中看不到任何 IFormFile。
[编辑 1]:我尝试的第一种方法是使用 HttpPostedFileBase,就像我在 ASP.NET MVC 5 中使用的那样,但它在我的 vNext 项目。我总是遇到 MissingMethodException。 我在客户端的代码是:
<form action="/home/UploadSWF" method="POST" enctype="multipart/form-data">
<input type="file" name="file" accept=".swf, application/x-shockwave-flash/*">
<input type="submit" name="submit" />
</form>
在我的控制器中:
public ActionResult UploadSWF(HttpPostedFileBase file)
{
return View();
}
IFormFile
作为 beta3 版本的一部分引入。您可能有过时的软件包。检查您的 project.json
并确保您使用的是 beta3(或更新版本)软件包。