サーバーにファイルをアップロードしようとすると、現在のビューがコントローラーから別のビューにリダイレクトされます。ファイルをアップロードして同じビューにとどまるにはどうすればよいですか。
私は次のコードを試しました:
public Action Result(HttpPostedFileBase file)
{
return new EmptyResult();
}
サーバーにファイルをアップロードしようとすると、現在のビューがコントローラーから別のビューにリダイレクトされます。ファイルをアップロードして同じビューにとどまるにはどうすればよいですか。
私は次のコードを試しました:
public Action Result(HttpPostedFileBase file)
{
return new EmptyResult();
}
Return View();
期待どおりに機能するはずで、Resultという名前のビューを返します。
現在のアクションメソッドが戻りたいビューでない場合は、次を使用できます。
return RedirectToAction("actionmethodname");
非同期アップロードにはpluploadのようなものを使用することをお勧めします。そうすれば、リダイレクトせずにアップロードでき、アップロードが完了したときに画像/ドキュメントを表示することもできます。
複数のアップロードとさまざまな方法によるフォールバックを使用して、ファイルを正常にアップロードできます。
実装では、アップロードを処理するためだけに別のコントローラーを作成します。
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);
}
}
ビュー名がUploadView.cshtmlであり、そこからファイルをアップロードするとします。
UploadView.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");
}