Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的系统中,我想为我的用户设置一个目录,这意味着他们有权访问的所有报告的列表。在 /icCube/doc/ic3report 我可以看到结构,但在我的系统上找不到文件。
那么是否有可能以某种方式检索报告列表?
icCube Web Reporting 框架基于包含多个请求的 Javascript 可视化库 ( www );此请求之一允许检索请求用户可访问的报告列表:
getReportNames
您可以修改示例以使用此请求并使用调试器检查结果表。或者,如果您有 ic3.Reporting 的实例(参见www),您可以使用以下函数:
ic3.Reporting.getAllReportNames( callback )
这是底层请求使用的快捷方式。您可以使用此URL查看实时示例。
希望有帮助。