9.0版本js导出代码:
var REPORT_URL = '${servletURL}?formlet=doc%2Ffrm%2Fexample.frm&op=export&format=excel&sessionID=' + aaa;
window.location =(FR.cjkEncode(REPORT_URL));
10.0版本js导出代码:
var REPORT_URL = '${servletURL}?viewlet=doc/frm/example.frm&op=export&format=excel&sessionID=' + aaa;
window.location = encodeURI(REPORT_URL);
主要是链接不同,9.0版的导出链接在10.0中可以使用,10.0的导出链接在9.0就不适用