【发布时间】:2015-12-04 15:24:56
【问题描述】:
是否可以使用带有 Razor 的 ASP.NET MVC4 上传文件,而无需在视图中使用表单(BeginForm 或 <form>)。
我的问题是我在主视图上有一个部分视图来显示信息(日志),如果我使用表单,我可以通过HttpPostFileBase 或Request.Files 获取有关正在上传的文件的信息,但是我的部分视图刷新,刷新整个页面,我最终只看到部分视图。如果我不使用表单,部分视图会正确更新,但我会丢失有关文件的所有信息。
我在 ajax 中尝试过preventDefault()(它会更新部分视图)。但我似乎无法让它工作。
这是我的代码:
控制器:
[HttpPost]
public PartialViewResult FileUpload(MyViewModel vm)
{
vm.Log = new ScriptLog();
if (Request.Files.Count < 1)
{
vm.Log.Add("File information missing");
}
else if (Request.Files[0].ContentLength < 1)
{
vm.Log.Add("File empty");
}
else
{
// Upload file and fill log
vm.Log.Add("File uploaded successfully.");
}
return PartialView("Log", vm.Log);
}
查看:
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
@model ViewModels.MyViewModel
<input type="file" name="file" accept="application/vnd.ms-excel" />
<input id="uploadButton" type="submit" value="Upload" />
@*
Without the form (BeginForm or <form>) the partial view correctly updates in place.
But it is missing any file information.
With it I can get the file information but I can't update the partial view in place.
*@
<div id="log">
@{ if (Model != null)
{
Html.RenderPartial("Log", Model.Log);
}
}
</div>
<script>
$("input[id=uploadButton]").on("click", function (e) {
//e.preventDefault(); // preventing the default action
//alert("Here")
$.post("/MyContoller/FileUpload")
.done(function (partialResult) {
$("#log").html(partialResult);
})
});
</script>
【问题讨论】:
-
Google Ajax 文件上传,您将获得解决方案。还要仔细检查支持的浏览器:)
标签: c# asp.net asp.net-mvc-4 razor