|
版本: |
X5EEV3.0 |
小版本号: |
|
|
|
数据库: |
MySQL |
服务器操作系统: |
Windows |
应用服务器: |
Tomcat |
客户端操作系统: |
Windows XP |
浏览器: |
Chrome |
|
|
1.form 提交内容,包含中文:
var s = justep.Request.convertURL("/UI/system/components/excel/import/upload.j");
var f = document.getElementById('div-form');
//在SP2版本后,form的action属性需要在js中赋值
if(!justep.Browser.IE6 && !justep.Browser.IE7)
f.setAttribute('action', s);
else{
f.attributes['action'].value = s;
}
var rt_select = $("#rt_select").val();
// var fn_select = $("#fn_select").val();
//获取文件后缀
var pos = uploadFile.lastIndexOf(".");
var lastname = uploadFile.substring(pos, uploadFile.length);
$("#requestType").val(rt_select);
$("#fileType").val(lastname);
$("#personID").val(justep.Context.getOperatorID());
$("#personName").val(justep.Context.getOperatorName()); //操作人姓名
$("#depName").val(justep.Context.getCurrentDeptName()); //部门名称
$("#depID").val(justep.Context.getCurrentDeptID);
//alert("请求:"+$("#requestType").val()+" 文件:"+ $("#fileType").val());
f.submit();
2、后台action获取内容:
uploadFile(InputStream uploadFile,String requestType,String fileType,String depID,String depName,String personID,String personName)
获取到的depName和personName都是乱码,这个怎么处理?
|
|