🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# 数据格式 触发器返回的数据格式 | 名称 | 类型 | 说明 | 例子 | | --- | --- | --- | --- | | text | string | 纯文本 | hello | | sleep | int | 延时多少秒后继续 | 2000 | | image | string | 发送图片文件的url地址 | http://x.com/x.jpg | | video | string | 发送视频文件的url地址 | http://x.com/x.mp4 | ## 返回示例 > 格式为 `application/json`, `array` 数组 ``` json [ { "type": "text", "data": "hello" }, { "type": "sleep", "data": 2000 }, { "type": "image", "data": "http://x.com/x.jpg" } ] ```