每当我尝试将文件上传到服务器时,当前视图都会从控制器重定向到不同的视图。如何上传文件并保持在同一个视图上。
我尝试了以下代码:
public Action Result(HttpPostedFileBase file)
{
return new EmptyResult();
}
每当我尝试将文件上传到服务器时,当前视图都会从控制器重定向到不同的视图。如何上传文件并保持在同一个视图上。
我尝试了以下代码:
public Action Result(HttpPostedFileBase file)
{
return new EmptyResult();
}
Return View();
应该像您期望的那样工作,返回名为Result的视图。
如果当前的Action Method不是您想要返回的视图,您可以使用:
return RedirectToAction("actionmethodname");
我建议使用plupload 之类的东西进行异步上传。这样您就可以在没有重定向的情况下上传,甚至可以在上传完成后查看图像/文档。
它允许通过不同的方法多次上传和回退以成功上传文件。
为了实现,您只需创建另一个控制器来处理上传。
假设您的视图名称是 UploadView.cshtml,并且您正在从那里上传文件。
上传视图.cshtml
@using (Html.BeginForm("UploadFile", "MyController", FormMethod.Post, new { enctype = "multipart/form-data", id = "frm", name = "frm" }))
{
<input id="FileAttachments" type="file" name="FileAttachments" />
<input type="submit" value="upload" />
}
您的控制器将是 MyController.cs
[HttpGet]
public ActionResult UploadView()
{
Return View();
}
[HttpPost]
public ActionResult UploadFile(HttpPostedFileBase FileAttachments)
{
if (FileAttachments != null)
{
string fileName = System.Guid.NewGuid().ToString() + Path.GetFileName(FileAttachments.FileName);
fileName = Path.Combine(Server.MapPath("~/Content/Files"), fileName);
FileAttachments.SaveAs(fileName);
}
return View("UploadView");
}
检查我在 MVC 架构中提交文章的代码。
public ActionResult Submit(ArticleViewModel newSubmit, HttpPostedFileBase uploadFile)
{
if (ModelState.IsValid)
{
//Upload File
if (uploadFile != null)
{
string fileName = uploadFile.FileName;
newSubmit.Article.image = fileName;
uploadFile.SaveAs("~/Content/Uploads/Images");
string savedFileName = Path.Combine(Server.MapPath("~/Content/Uploads/Images"), uploadFile.FileName);
}
// The HTML comes encoded so we decode it before insert into database
newSubmit.Article.content = HttpUtility.HtmlDecode(newSubmit.Article.content);
//Set article flags
newSubmit.Article.flagged = true;
newSubmit.Article.finished = false;
newSubmit.Article.submitStoryFlag = true;
//Insert article in the database _repository.AddArticle(newSubmit);
return View("Submitted");
}
else
{
// Invalid – redisplay with errors
return View(newSubmit);
}
}