使用文件结果在提示'Save as...'保存文件



我需要在点击一些文本时下载特定的文件。我期待典型的"另存为……"对话框选择保存文件的位置,但没有出现。请求和响应都是正确的。

请求/响应头

GET/Survey/GetSurveyFile? Survey =1085&surveyFileType=2 HTTP/1.1

主持人:localhost: 50518

连接:维生

User-Agent: Mozilla/5.0 (Windows NT 6.1;WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.107 Safari/537.36 OPR/31.0.1889.99

接受:/

X-Requested-With: XMLHttpRequest

======================

HTTP/1.1 200 OK

cache - control:私人

内容类型:应用程序/八进制

服务器:microsoft iis/8.0

X-AspNetMvc-Version: 5.2

附加项:附件;filename=" 1052__1183__1291__变量头定义.txt"

X-AspNet-Version: 4.0.30319

X-SourceFiles: = utf - 8 ? B ? UzpcVlNTb3VyY2VcUHJvamVrdGVcTU1JXGJmdWVudGVzXE1NSVxNaW5kc2hhcmUuTU1JXE1NSVxTdXJ2ZXlcR2V0U3VydmV5RmlsZQ = = ?=

Persistent-Auth:真

X-Powered-By: ASP。净

日期:星期一,2015年8月17日14:21:48 GMT

内容长度:333

我的代码:

Javascript

function getfile(filetype) {
    var SurveyId = $('#SurveyID').val();
    var url = '/Survey/GetSurveyFile';
    $.ajax({
        type: 'GET',
        url: url,
        data: { survey: SurveyId, surveyFileType: filetype },
        success: function (result) {
            // ?
        },
        error: function (result) {
            // handle errors
            location.href = "/Home/"
        }
    });
}
控制器

public FileResult GetSurveyFile(string survey, string surveyFileType)
{
    try
    {
        var tmpSurvey = EntityModelDataProvider.GetSurveyByID(int.Parse(survey));
        var tmpSurveyFileTypes = EntityModelDataProvider.GetSurveyFileTypes();
        var tmpSurveyFileType = tmpSurveyFileTypes.FirstOrDefault(_sft => _sft.SurveyFile_Type_Id == int.Parse(surveyFileType));
        var tmpFile = EntityModelDataProvider.GetSurveyFilesBySurveyAndType(tmpSurvey.Survey_PK, tmpSurveyFileType.SurveyFile_Type_PK);
        if (tmpFile != null)
        {
            byte[] fileBytes = tmpFile.SurveyFile;
            string fileName = tmpFile.SurveyFile_Name;
            return File(fileBytes, System.Net.Mime.MediaTypeNames.Application.Octet, fileName);
        }
        else
            throw new Exception("File not found!");
    }
    catch (Exception ex)
    {
        throw ex;
    }
}

知道我怎样才能得到想要的行为吗?

原文

查看这里使用ajax请求下载文件

我已经在我的机器上尝试了下一个代码

function getfile() {
    $.ajax({
        type: 'get',
        url: '@Url.Action("Download")',
        success: function () {
            window.location = '@Url.Action("Download")';
        }
    });
}
$(function() {
    $('h2').on('click', getfile);
});

public FileResult Download()
{
    var bytes = System.IO.File.ReadAllBytes(Server.MapPath("~/123.txt"));
    return File(bytes, System.Net.Mime.MediaTypeNames.Application.Octet, "123.txt");
}

更新(v2)

不需要ajax请求。改变窗口。位置就足够了:

function getfile() {
    var p1 = Math.random().toString();
    var p2 = Math.floor(Math.random() * 100);
    window.location = '@Url.Action("Download")?' + 'p1=' + p1 + '&' + 'p2=' + p2;
}
$(function() {
    $('h2').on('click', getfile);
});

public FileResult Download(string p1, int p2)
{
    var bytes = System.IO.File.ReadAllBytes(Server.MapPath("~/123.txt"));
    return File(bytes, System.Net.Mime.MediaTypeNames.Application.Octet, string.Format("123_{0}_{1}.txt", p1, p2));
}

相关内容

  • 没有找到相关文章

最新更新