Commit 9645a5a1 authored by lrd's avatar lrd

Update hlsDataSource.md by liangrending

parent dd1a0a4c
...@@ -2,22 +2,19 @@ ...@@ -2,22 +2,19 @@
数据源组件hlsDataSource 数据源组件hlsDataSource
* ``` ```
<h:hlsDataSource id="hlsDataSource" autoQuery="true" successEnd="successEnd"> <h:hlsDataSource id="hlsDataSource" autoQuery="true" successEnd="successEnd">
<h:transport parameter="parameter"> <h:transport parameter="parameter">
<h:read url="" type="GET" /> <h:read url="" type="GET" />
</h:transport> </h:transport>
</h:hlsDataSource> </h:hlsDataSource>
``` ```
| **属性** | **参数** | **说明** |
* | -------- | -------- | -------- |
| ** 属性** | **参数** | **说明** | | id | 唯一英文标识 | 数据源唯一标志,返回数据源对象,包含查询返回的数据 |
| --- | --- | --- | | autoQuery | true\/false | 自动查询标志,默认为true,true代表自动发送查询请求,false代表不发送查询请求 |
| id | 唯一英文标识 | 数据源唯一标志,返回数据源对象,包含查询返回的数据 | | successEnd | function | 异步请求成功的回调函数,参数:data\(查询返回的数据\) |
| autoQuery | true\/false | 自动查询标志,默认为true,true代表自动发送查询请求,false代表不发送查询请求 | | parameter | function | 函数返回一个对象,会自动封装到查询条件中 |
| successEnd | function | 异步请求成功的回调函数,参数:data\(查询返回的数据\) | | url | 查询字符串 | 查询字符串,对应后台的数据接口 |
| parameter | function | 函数返回一个对象,会自动封装到查询条件中 | | type | GET\/POST | 对应发送GET请求跟POST请求 |
| url | 查询字符串 | 查询字符串,对应后台的数据接口 |
| type | GET\/POST | 对应发送GET请求跟POST请求 |
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment