1.11.3.2 iot-gateway

优质
小牛编辑
114浏览
2023-12-01

WEB插件开发-“iot-gateway”

更新时间:2018-02-01 21:17:58

简介

平台Web应用、Web插件,服务请求的库。

安装

bnpm install @bone/iot-gateway --save

使用

import IotGateway, {axios} from '@bone/iot-gateway';

IotGateway
    .post({url, apiVer, params})
    .then(res => console.log(res))
    .catch(res => console.log(res))

API

参数说明

参数说明类型必要默认值
url服务APIStringtrue-
apiVer服务版本号Stringtrue-
params请求入参Objectfalse-

备注:可导出axios网络库,更多请参考 axios