1

コンテクスト

OfficeOpenXmlを使用してExcelファイルを作成しましたが、ブラウザに何も返されません。

理由は何ですか?

コード

[C#]:

public ActionResult ExportToExcel(string[] mails)
{
    using (var ep = new ExcelPackage())
    {
        var ws = ep.Workbook.Worksheets.Add("Contacts");

        for (var i = 0; i < mails.Length; i++)
        {
            ws.Cells[i + 1, 1].Value = mails[i];
        }

        Byte[] bytes = ep.GetAsByteArray();

        return new FileContentResult(bytes, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet") { FileDownloadName = "Contacts.xls" };
    }
}

[JavaScript]:

$('#contacts-excel-btn').click(function () {
    var mails = [],
        uniqueMails = [];

    $('.email-td').each(function () {
        var txt = $(this).text();
        if (txt) {
            mails.push(txt);
        }
    });

    $.each(mails, function (i, el) {
        if ($.inArray(el, uniqueMails) === -1) {
            uniqueMails.push(el);
        }
    });

    if (uniqueMails[0]) {
        $.ajax({
            type: 'POST',
            url: '/Contact/ExportToExcel',
            dataType: 'json',
            traditional: true,
            data: { mails: uniqueMails }
        });
    }
});
4

1 に答える 1

1

わかりました私は私の問題を解決しました。

この記事によると、私は次のものに置き換えましreturnた:

var butes = ep.GetAsByteArray();
var fileName = "Contacts.xlsx";

return base.File(bytes, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", fileName);

この記事によると、私は ajax アプローチを html フォーム アプローチに置き換えました。

[JS] :

$.each(uniqueMails, function (i, el) {
    $('#contacts-excel-form').append('<input type="hidden" name="mails[' + i + ']" value="' + el + '" />');
});

$('#contacts-excel-form').submit();

[C#] :

var mails = Request.Form.AllKeys;

for (var i = 0; i < mails.Length; i++)
{
    ws.Cells[i + 1, 1].Value = Request.Form[mails[i]];
}
于 2012-12-05T10:33:20.830 に答える