postBLEBigDataChannelWithProgress
大数据通道操作,支持进度反馈
引入
import { postBLEBigDataChannelWithProgress } from '@ray-js/ray';
需引入
DeviceKit
,且在>=3.0.0
版本才可使用
参数
Object object
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
deviceId | string | 是 | deviceId 设备 id | |
request Params | any | 是 | 建立数据传输所需相关参数 command:通道操作的具体指令;start/stop:开启/关闭大数据通道;type:要上传的数据类型 requestParams 通道指令集 { "command": "start", "type": "1" } | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) | |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 |
object.success 回调参数
参数
Object res
属性 | 类型 | 说明 |
---|---|---|
deviceId | string | deviceId 设备 id |
resultParams | any | 数据传输完毕相关参数(type dps fileUrl) resultParams 数据传输完毕相关参数 |
object.fail 回调参数
参数
Object res
属性 | 类型 | 说明 |
---|---|---|
errorMsg | string | 插件错误信息 |
errorCode | string | 错误码 |
innerError | object | 插件外部依赖错误信息 {errorMsg: string, errorCode: string } |