1

メソッドでファイルをダウンロードしたいのですがwindow.open(url)、パラメータが多すぎてアクションが受け取れません。jQueryまたはフォーム送信で解決する解決策はありますか?

var url = "${path}/MaterialStockedAnalysisExport.action?type=byCompany";
url += "&startMonth=" + startMonth + "&endMonth=" + endMonth + "&materialStr=" +
    escape(encodeURIComponent(materialStr))  + "&companyStr=" + 
    escape(encodeURIComponent(companyStr));
alert(url);
window.open(url);
4

1 に答える 1