<< Click to Display Table of Contents >> 1.15获取报告列表复制链接 |
请求地址 |
http://ip:port/bi/api?action=updateTree&token=xxxx |
|
请求消息 |
请求参数 |
请求参数:xmlData(必填) <?xml version="1.0" encoding="UTF-8"?> <info> <opens>A/A1</opens> <folders>A</folders> <type>db</type> </info> |
参数描述 |
参数为节点信息: •opens(必填):为列表中想要打开的文件夹,参数值可以为空。 •folders(必填):为指定文件夹,从指定的文件夹下获得报告,参数值可以为空。 •type(选填):报告的类型,参数值包括db、dblink、adb、vividdb、portalCell、vividdblink,未填写时为db。(10.1开始支持type参数) db:分析报告。 dblink:分析报告的链接。 adb:即席分析报告。 vividdb:大屏报告。 vividdblink:大屏报告链接。 portalCell:组合报告。 |
|
示例 |
function getDB() { var xml = getXml(); $.post("http://" + ip + ":" + port + "/" + project + "/api?action=updateTree&token=xxxx", {xmlData : xml}, function(result) { writeXml(result); }); } |
|
响应消息 |
响应结果 |
操作成功 <?xml version="1.0" encoding="UTF-8"?> <results> <result> <assetref> <name>A</name> <path>A</path> <type>folder</type> <fstatus>folder-opened</fstatus> <children> <result> <assetref> <name>A1</name> <path>A/A1</path> <type>folder</type> <fstatus>folder-opened</fstatus> <children> <result> <assetref> <name>A11</name> <path>A/A1/A11</path> <type>db</type> </assetref> </result> </children> </assetref> </result> <result> <assetref> <name>A2</name> <path>A/A2</path> <type>folder</type> <fstatus>folder-closed</fstatus> </assetref> </result> </children> </assetref> </result> </results> |
结果描述 |
响应结果信息为xml,直接parse即可。 •assetref:节点对应报告列表。 •name:节点名称。 •path:节点路径。 •type:节点类型,包括7种,folder为文件夹,db为报告,dblink为分析报告的链接, adb为即席分析报告,vividdb为大屏报告,vividdblink为大屏报告链接,portalCell为组合报告。 •children:节点下的子节点。 |