自定义导出excel报错 文件格式或扩展名变了 无法打开


function post(URL, PARAMS) {        
    var temp = document.createElement("form");        
    temp.action = URL;        
    temp.method = "post";        
    temp.style.display = "none";        
    for (var x in PARAMS) {        
        var opt = document.createElement("textarea");        
        opt.name = x;        
        opt.value = PARAMS[x];        
        // alert(opt.name)        
        temp.appendChild(opt);        
    }        
    document.body.appendChild(temp);temp.submit();        
    return temp;        
}
这个是提交函数

post('/WebReport/ReportServer',
{
reportlet:"XX/XXX/XXXX.cpt",
OrderNo:FR.cjkEncode(OrderNo),
format:"excel"
});

这个是传的参数格式



FineReportwlkj 发布于 2017-7-17 16:34
回答问题
悬赏:2 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
取消
  • 0关注人数
  • 427浏览人数
  • 最后回答于:2017-7-17 16:34
    活动推荐 更多
    热门课程 更多
    返回顶部