1.77资源解析

<< Click to Display Table of Contents >>

当前位置:  部署与集成 > WebAPI 

1.77资源解析

复制链接

支持的版本:9.4及以后

请求地址

http://ip:port/bi/api?action=getAssetInfo&token=xxxx

请求消息

请求参数

请求参数:xmlData

<?xml version="1.0" encoding="UTF-8"?>

<info>

<ref>

<type>sql</type>

<path>咖啡中国门店订单数据</path>

</ref>

</info>

参数描述

type(必填):资源的类型,见附录的资源类型说明。不支持资源文件夹、流程模型、训练模型、系统主题。

path(必填):资源的路径名称。

示例

function getAssetInfo() {

  var xml = getXml();

  $.post("http://" + ip + ":" + port + "/" + project + "/api?action=getAssetInfo&token=xxxx",

     {xmlData : xml},

     function(result) {

     writeXml(result);

  });

}

响应消息

响应结果

操作成功

<infoName>g5.qry.sql.SQLQuery</infoName>

<child>

   <selectedInfo>

       <infoName>g5.qry.SelectedInfo</infoName>

       <child>

           <schema>null</schema>

           <catalog>null</catalog>

           <opens></opens>

           <type>0</type>

           <infoTrait>null</infoTrait>

           <isDirect>false</isDirect>

           <table>null</table>

       </child>

   </selectedInfo>

   <folders></folders>

   <access>

       <infoName>g5.qry.secure.QryAccess</infoName>

       <child>

           <rfilter>null</rfilter>

           <cols></cols>

       </child>

   </access>

   <catalog>null</catalog>

   <bcols>

       <sub2>

           <infoName>g5.meta.BCol</infoName>

           <child>

               <dlvl>0</dlvl>

               <view>null</view>

               <frags>-1</frags>

               <meta>null</meta>

               <isAdvance>false</isAdvance>

               <stype>0</stype>

               <name>剩余库存</name>

               <showType>0</showType>

               <dim>false</dim>

               <dtype>10</dtype>

               <remark>null</remark>

               <sortCls>null</sortCls>

           </child>

       </sub2>

       <sub3>

           <infoName>g5.meta.BCol</infoName>

           <child>

               <dlvl>0</dlvl>

               <view>null</view>

               <frags>-1</frags>

               <meta>null</meta>

               <isAdvance>false</isAdvance>

               <stype>0</stype>

               <name>会员等级</name>

               <showType>0</showType>

               <dim>true</dim>

               <dtype>2</dtype>

               <remark>null</remark>

               <sortCls>null</sortCls>

           </child>

       </sub3>

       <sub0>

           <infoName>g5.meta.BCol</infoName>

           <child>

               <dlvl>0</dlvl>

               <view>null</view>

               <frags>-1</frags>

               <meta>null</meta>

               <isAdvance>false</isAdvance>

               <stype>0</stype>

               <name>订单ID</name>

               <showType>0</showType>

               <dim>false</dim>

               <dtype>10</dtype>

               <remark>null</remark>

               <sortCls>null</sortCls>

           </child>

       </sub0>

       <sub1>

           <infoName>g5.meta.BCol</infoName>

           <child>

               <dlvl>0</dlvl>

               <view>null</view>

               <frags>-1</frags>

               <meta>null</meta>

               <isAdvance>false</isAdvance>

               <stype>0</stype>

               <name>门店</name>

               <showType>0</showType>

               <dim>true</dim>

               <dtype>2</dtype>

               <remark>null</remark>

               <sortCls>null</sortCls>

           </child>

       </sub1>

   </bcols>

   <srows>5000</srows>

   <manualSort></manualSort>

   <mtime>null</mtime>

   <showHiddenCols>false</showHiddenCols>

   <sql>SELECT * from 咖啡中国门店订单数据</sql>

   <offline>false</offline>

   <ref>

       <infoName>g5.common.rep.AssetRef</infoName>

       <child>

           <path>___CONNECTION___/Demo Data_zhCN</path>

           <type>16903</type>

       </child>

   </ref>

   <merge>true</merge>

   <sqlParser>true</sqlParser>

   <extractJobInfo>null</extractJobInfo>

   <qfolders></qfolders>

   <L_S>sql</L_S>

   <scols></scols>

   <mpath>null</mpath>

   <params></params>

   <hiers></hiers>

   <exportInfo>null</exportInfo>

   <sortType>0</sortType>

   <meta>

       <infoName>g5.qry.fmt.QryMeta</infoName>

       <child>

           <cols></cols>

       </child>

   </meta>

   <aggrCols></aggrCols>

   <prohibitDownLoad>false</prohibitDownLoad>

</child>

结果描述

返回上述形式表示正确。

说明:

不同的资源类型返回信息不同,此处仅以sql数据集返回的xml格式数据为例说明。