Interface
The result of data source's query method.
Properties
Property | Type | Notes |
---|---|---|
number | The number of result records. | |
boolean | When exceededTransferLimit is true, it indicates there are more query results and you can continue to page through the results. | |
string[] | The jimuFieldName. | |
string[] | The IDs of the result records. | |
boolean | Whether the query process is aborted. | |
IMQueryParams | The query parameters that generate the result. | |
Records of the query result. |
exceededTransferLimit
exceededTransferLimit: boolean
When exceededTransferLimit is true, it indicates there are more query results and you can continue to page through the results.
isAborted
isAborted: boolean
Whether the query process is aborted. isAborted
is undefined
or false
means the query process is done.
queryParams
Interface PropertyqueryParams: IMQueryParams
The query parameters that generate the result.
records
records: DataRecord[]
Records of the query result.