hgateway
v1.0.3
Published
hgateway
Downloads
3
Readme
hgateway
介绍
此项目用于hm-gateway网关服务接口调用。
// 使用示例
import hg from "hgateway"
let env = {
H_GATEWAY: "https://xxx.xxx.cn/api/gateway",
H_APPID: "88888888",
H_SECRET: "********"
}
hg.gateway(env, "hm.user.query", {}).then((data) => {
// 业务数据,执行业务处理逻辑
console.log("ResponseData", data)
}).catch(err => {
// 异常处理,如弹出提示框
console.error("ResponseError",err.message)
})