描述

  • calendar控件说明

接口版本

版本号 制定人 制定日期 版本描述
1.0 覃之添 2021-6-29 初始版本

ip地址

http://192.168.1.1/wapi

API列表

名字 描述
set 设置属性
get 获取属性

##1、set

请求参数说明

参数名 类型 说明
attr string 属性
attr.action string 行为:data-‘设置显示日期’;
attr.day int 参数:日
attr.month int 参数:月
attr.year int 参数:年

调用示例

{
    "wid": "s1",
    "cmd" : "set",
    "attr": {
        "action": "data",
        "day": 29,
        "month": 6,
        "year": 2021
    }
}
注:设置calendar的日期为 2021-6-29;
{
    "code": 0
}

返回参数说明

参数名 类型 说明
result string 结果信息
result.code int 错误码

错误码

错误码 说明

##2、get

请求参数说明

参数名 类型 说明

调用示例

{
    "wid": "s1",
    "cmd" : "get"
}

返回示例

{
    "month": 6,
    "day": 29,
    "year": 2021,
    "code": 0
}

返回参数说明

参数名 类型 说明
result string 结果信息
result.code int 错误码
result.month int
result.day int
result.year int

错误码

错误码 说明
文档更新时间: 2021-12-23 16:02   作者:shuke