用jquery 请求到下载action中但是下载部分无效
jquery部分:
       $.ajax({
     url: "goDownload.do",
     type:"post",
     cache:"false",
     data:[{name :'code',value:code},{name :'itemTypeId',value:item},{name:'itemId',value:itemid}],
     success: function() {
      window.location.href="down.do";
 }
 });
action  中response设置
       response.reset();
       response.setContentType("application/x-msdownload;charset=utf-8");
       response.setHeader("Content-Disposition","attachment;filename="+file.getName());