簡體   English   中英

如何在使用FileContentResult ActionResult時在客戶端的ASP.NET MVC中了解文件下載狀態?

[英]How to know file download status in ASP.NET MVC in clientside while using FileContentResult ActionResult?

我必須知道客戶端中的文件下載狀態,我使用ASP.NET MVC來完成任務。 由於無法在其他應用程序中的iframe中打開頁面,因此我無法使用Cookie來了解狀態,這使我無法保留Cookie。

我想從RedirectToAction Url訪問QueryString,它是“ DownloadUrl ”。 獲取值和受尊重的視圖和控制器代碼的屏幕截圖如下所示。 如何在我的情況下實現“downloadStatus”查詢字符串? 請幫忙。

在此輸入圖像描述

Index.cshtml

@{
    ViewBag.Title = "Home Page";
}

<script type="text/javascript">
    $(document).ready(function () {
        $("#download").on("click", function () {         
                $('#statusDiv').show();               
                setTimeout(checkDownloadStatus, 1000); //Initiate the loop to check the downloadStarted value.
        });

        var checkDownloadStatus = function () {

            // Get querystring value for downloadStarted
            if (getUrlParameter("downloadStatus") == 1) {             
                $('#statusDiv').hide();
            } else {
                downloadTimeout = setTimeout(checkDownloadStatus, 1000); //Re-run this function in 1 second.
            }
        };

        // get querystring value
        var getUrlParameter = function getUrlParameter(sParam) {
            var sPageURL = window.location.search.substring(1),
                sURLVariables = sPageURL.split('&'),
                sParameterName,
                i;

            for (i = 0; i < sURLVariables.length; i++) {
                sParameterName = sURLVariables[i].split('=');

                if (sParameterName[0] === sParam) {
                    return sParameterName[1] === undefined ? true : decodeURIComponent(sParameterName[1]);
                }
            }
        };

    });
</script>

@using (Html.BeginForm(null, null, FormMethod.Post, new { @id = "formDownload" }))
{
    <div class="row">

        <div id="statusDiv" style="display:none;">File is downloading ...</div>

        <button type="submit" formaction="~/Home/FileDownload" id="download" value="download" formmethod="post">
            Download
        </button>
    </div>
}

HomeController.cs

using System.Threading.Tasks;
using System.Web.Mvc;

namespace RedirectToActionDemo.Controllers
{
    public class HomeController : Controller
    {
        public ActionResult Index()
        {
            return View();
        }

        [HttpPost]
        public async Task<ActionResult> FileDownload()
        {
            var fileStream = System.IO.File.ReadAllBytes(@"D:\Documents\Information.docx");

            DownloadFileResult res = new DownloadFileResult();
            res.FileResult = fileStream;
            res.MimeType = "application/vnd.openxmlformats-officedocument.wordprocessingml.document";
            res.FileName = "Information.docx";

            TempData["Result"] = res;
            return RedirectToAction("downloadUrl", new { downloadStatus = "1" });
        }

        public ActionResult DownloadUrl(string downloadStatus)
        {
            DownloadFileResult res = TempData["Result"] as DownloadFileResult;
            return File(res.FileResult, res.MimeType, res.FileName.Replace("\"", ""));
        }
    }

    public class DownloadFileResult
    {
        public byte[] FileResult { get; set; }
        public string FileName { get; set; }
        public string MimeType { get; set; }
    }
}

這應該為您提供網址的最后一部分:

@{
   var id = Request.Url.Segments.Last();
}

有關上述內容的一些信息

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM