解决前端对应后台的导出接口 window.open()提交数据 参数过长的问题

一般 window.open 传参数都是用Get.方式,在url后面拼接参数。
但这样有时候并不适用,如:
1)不想被看到参数信息
2)参数过长,get有限制会被截断
3)可能有中文编码问题
所以需要用post方式 ,下面说的就是一种window.open发送post请求的方法。

网页的post一般是通过form表单的方式来实现的,所以现在来模拟form表单的方式来实现window.open效果。

  var winHeight = window.document.documentElement.clientHeight - 10;
  // 后台写好的导出功能接口
  var url = basePath + "/Search/export";  
  // 这里创建from表单  设置input隐藏域 携带需要的参数 注意这里要加密(中文要乱码)  后后台接收要解码 URLDecoder.decode(request.getParameter("jsonData"),"UTF-8");
  var formStr = '
+ url + '">' + '+ encodeURIComponent(listsum) + '" />' + '+ encodeURIComponent(username) + '" />' +''
; var win = window.open("", "height=" + winHeight+ ",top=80,left=80,toolbar=no, menubar=no, scrollbars=yes, resizable=yes"); win.document.body.innerHTML = formStr; win.document.forms[0].submit();

亲测有效,希望可以帮到你们。

你可能感兴趣的:(js知识点,js,乱码,post,url,java)