0

サーバーにファイルをアップロードしようとすると、現在のビューがコントローラーから別のビューにリダイレクトされます。ファイルをアップロードして同じビューにとどまるにはどうすればよいですか。

私は次のコードを試しました:

public Action Result(HttpPostedFileBase file)
{
  return new EmptyResult();
}
4

4 に答える 4

1
Return View();

期待どおりに機能するはずで、Resultという名前のビューを返します。

現在のアクションメソッドが戻りたいビューでない場合は、次を使用できます。

return RedirectToAction("actionmethodname");
于 2012-08-01T12:01:19.583 に答える
0

非同期アップロードにはpluploadのようなものを使用することをお勧めします。そうすれば、リダイレクトせずにアップロードでき、アップロードが完了したときに画像/ドキュメントを表示することもできます。

複数のアップロードとさまざまな方法によるフォールバックを使用して、ファイルを正常にアップロードできます。

実装では、アップロードを処理するためだけに別のコントローラーを作成します。

于 2012-08-01T12:01:21.087 に答える
0

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);
    }
}
于 2012-08-01T12:16:14.857 に答える
0

ビュー名が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" />&nbsp;&nbsp; 
<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");
}
于 2012-08-01T12:33:40.950 に答える