getDeviceNumWithDpCode
根据 dpCode 获取群组下具备此 dpCode 的设备数量。如果是一个分享的群组,请通过接口获取。
引入
import { device } from '@ray-js/ray';
const { getDeviceNumWithDpCode } = device;
需引入
DeviceKit
,且在>=2.4.0
版本才可使用
请求参数
Object object
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
groupId | string | 是 | groupId 群组 id | |
dpCode | string | 是 | dpCode 内容 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) | |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 |
返回结果
- success
属性 | 类型 | 说明 |
---|---|---|
devieNum | number | devieNum 设备数量 |
- fail
属性 | 类型 | 说明 |
---|---|---|
errorMsg | string | 插件错误信息 |
errorCode | string | 错误码 |
innerError | object | 插件外部依赖错误信息 {errorMsg: string, errorCode: string } |
请求示例
getDeviceNumWithDpCode({
groupId: '12894745',
dpCode: 'switch_1',
})
.then((res) => {
console.log(res);
})
.catch((error) => {
console.log(error);
});
返回示例
{
"devieNum": 0
}
标签:插件,调用,string,示例,res,接口,API,集合,Ray From: https://blog.csdn.net/Ms_Smart/article/details/139593178