<< Click to Display Table of Contents >> Export the components in the dashboard as a picture |
![]() ![]() ![]() |
Request address |
http://ip:port/bi/api?action=saveImg&token=xxxx |
|
Request message |
Request parameter |
required parameter:xmlData (required) <?xml version="1.0" encoding="UTF-8"?> <info> <user>hunk1</user> <image> <dbpath>典型功能演示/高亮预警</dbpath> <dbelems>表1,图片2</dbelems> <imgnames>test1,test2</imgnames> <imgpath>imgs</imgpath> </image> </info> |
parametric description |
Parameter is node information : 1) user(optional):The user name of the target user that you want to view. 2) dbpath(required):The path of the dashboard 3) dbelems(required):To export elements in the dashboard, multiple element are separated by commas. 4) imgnames(optional): After element exports into a picture, the name of the picture. When completing this item, multiple names should be separated by commas and the number of names should be the same as the number of dbelems. If you do not fill in this item, the picture name defaults to the component name. 5) imgpath(required) Export path, the picture will be saved to the server's root directory. The example will be saved under tomcat/webapps/bi/imgs (the export format is pngng. |
|
Sample |
function saveImg() { var xml = getXml(); $.post("http://" + ip + ":" + port + "/" + project + "/api?action=saveImg&token=xxxx", {xmlData : xml}, function(result) { writeXml(result); }); } |
|
Response message |
Response result
|
1) Successful operation <?xml version="1.0" encoding="UTF-8"?> <results> <result> <level>1</level> <message>Save successfully.</message> </result> </results> 2) Operation failure <?xml version="1.0" encoding="UTF-8"?> <results> <result> <level>6</level><message>null</message> </result> </results> Note: this error represents no element found in the dashboard. or <?xml version="1.0" encoding="UTF-8"?> <results> <result> <level>6</level> <message>User“hunk1” is not granted to visit ''dianixinggongnengyanshi/gaoliangyujing'' in ''read access''.</message> </result> </results> Note: if a non-administrator account wants to view other people's data, this error message is returned. |
Result description |
The response result information is xml. direct parse. 1) Level return type, different values represent different return status, see appendix. 2) Message is the interface operation result information. |