更新记录
1.0.1(2020-08-05)
- 优化云函数
- 添加云函数URL化( 云函数URL化设置)
目前只支持post + json 数据访问
POST https://你的url/http/logistics HTTP/1.1
content-type:application/json
{"name":"kdniao","RequestType":1002,"RequestData":{"OrderCode":"","ShipperCode":"STO","LogisticCode":"78945645 ","IsHandleInfo":"0"}
1.0.0(2020-08-04)
初来发布,不足之处请多多包涵!
平台兼容性
阿里云 | 腾讯云 | 支付宝云 |
---|---|---|
√ | √ | × |
云函数类插件通用教程
使用云函数类插件的前提是:使用HBuilderX 2.9+
说明 logistics 是一个快递查询的云函数插件,一个插件聚合了快递鸟和快递100查询接口。 下载示例 使用说明 请先到
/logistics/index.js
中配置好参数
如果觉得组件不错,给五星鼓励鼓励咯!
快递鸟的简单使用,更多接口请阅读官方的接口文档,对应参数填写上:
uniCloud.callFunction({
name: 'logistics',
data: {
name: 'kdniao',
RequestType: 1002,
RequestData: {
"OrderCode": "123456",
"ShipperCode": "SF",
"LogisticCode": "1234562",
"IsHandleInfo": "0"
}
}
}).then(res => {
console.log(res)
})
快递100的简单使用,更多接口请阅读官方的接口文档,对应参数填写上:
uniCloud.callFunction({
name: 'logistics',
data: {
name: 'kuaidi100',
RequestData: {
"com": "annto",
"num": "5570175447"
}
}
}).then(res => {
console.log(res)
})