比如报表存放路径为/table1/test1.cpt,有没有公式可以在报表页面里,把当前报表的路径展示出来呢
没找到公式,只有用js获取地址后再进行转码了
-----------------------
var str1 = window.location.href;
var num1 = str1.indexOf("=")+1;
var num2 = str1.indexOf("&");
var val1 = str1.slice(num1, num2);
window.alert(decodeURIComponent(val1.replace(/%25/g, "%")));
这个目前没有
有的是这些
https://help.fanruan.com/finereport/doc-view-3742.html 参考