Description
- Description of the dropdown widget
Interface version
Version number |
Writer |
Date |
Description |
1.0 |
Qin Zhitian |
June 29, 2021 |
initial release |
IP address
http:
API list
Name |
Description |
set |
set attributes |
get |
get attributes |
1. set
Description of request parameters
Parameter Name |
Type |
Description |
attr |
string |
attribute |
attr.action |
string |
action:open-‘open a dropdown’;close-‘close a dropdown’; choose-‘set the selected item’; |
attr.num |
int |
parameter: item number |
Call example
{
"wid": "s1",
"cmd" : "set",
"attr": {
"action": "open"
}
}
Note: open a drop-down list;
{
"wid": "s1",
"cmd" : "set",
"attr": {
"action": "close"
}
}
Note: close a drop-down list;
{
"wid": "s1",
"cmd" : "set",
"attr": {
"action": "choose",
"num": 3
}
}
Note: choose the third item in a drop-down list;
Return example
{
"code": 0
}
Description of return parameters
Parameter Name |
Type |
Description |
result |
string |
result information |
result.code |
int |
error code |
Error Code
2. get
Description of request parameters
Parameter Name |
Type |
Description |
Call example
{
"wid": "s1",
"cmd" : "get"
}
Return example
{
"id": 3,
"code": 0
}
Description of return parameters
Parameter Name |
Type |
Description |
result |
string |
result information |
result.code |
int |
error code |
result.id |
int |
get the selected item |
Error Code
文档更新时间: 2021-08-18 22:00 作者:plj