http相关
http封装
httpGet 官方httpGet封装
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
url | 是 | string | 请求链接 |
parms | 否 | Object | 请求参数 {"a":1} |
dataType | 否 | String | 默认json string/json |
timeout | 否 | int | 超时时间 秒 默认10 |
headers | 否 | Object | 请求头信息 {"a":1} |
let url = "http://www.baidu.com",
parms = {data: "abc"},
dataType = "string",
timeout = 30,
headers = {UA: "xxxxx"},
res = null
//默认返回值为Object
res = laoleng.http.get(url)
if (res) {
logd(JSON.stringify(res))
logd(res.code)
}
logd(laoleng.http.get(url, parms));
//指定返回值为string
ret = laoleng.http.get(url, parms, dataType)
if (ret) {
logd(ret)
}
logd(laoleng.http.get(url, parms, dataType, timeout));
//单独指定超时时间
res = laoleng.http.get(url, null, null, timeout)
if (res) {
logd(JSON.stringify(res))
logd(res.code)
}
logd(laoleng.http.get(url, parms, dataType, timeout, headers));
返回值 | 类型 | 说明 |
---|---|---|
默认Object/字符串 | Object/string | 返回信息 |
httpPost 官方httpPost封装
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
url | 是 | string | 请求链接 |
parms | 否 | Object | 请求参数 {"a":1} |
dataType | 否 | String | 默认json string/json |
timeout | 否 | int | 超时时间 秒 默认10 |
headers | 否 | Object | 请求头信息 {"a":1} |
let url = "http://www.baidu.com",
parms = {data: "abc"},
dataType = "string",
timeout = 30,
headers = {UA: "xxxxx"},
res = null
//默认返回值为Object
res = laoleng.http.post(url)
if (res) {
logd(JSON.stringify(res))
logd(res.code)
}
logd(laoleng.http.post(url, parms));
//指定返回值为string
ret = laoleng.http.post(url, parms, dataType)
if (ret) {
logd(ret)
}
logd(laoleng.http.post(url, parms, dataType, timeout));
//单独指定超时时间
res = laoleng.http.post(url, null, null, timeout)
if (res) {
logd(JSON.stringify(res))
logd(res.code)
}
logd(laoleng.http.get(url, parms, dataType, timeout, headers));
返回值 | 类型 | 说明 |
---|---|---|
默认Object/字符串 | Object/string | 返回信息 |
postJson 官方postJson封装
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
url | 是 | string | 请求链接 |
parms | 否 | Object | 请求参数 {"a":1} |
dataType | 否 | String | 默认json string/json |
timeout | 否 | int | 超时时间 秒 默认10 |
headers | 否 | Object | 请求头信息 {"a":1} |
let url = "http://www.baidu.com",
parms = {data: "abc"},
dataType = "string",
timeout = 30,
headers = {UA: "xxxxx"},
res = null
//默认返回值为Object
res = laoleng.http.postJson(url)
if (res) {
logd(JSON.stringify(res))
logd(res.code)
}
logd(laoleng.http.postJson(url, parms));
//指定返回值为string
ret = laoleng.http.postJson(url, parms, dataType)
if (ret) {
logd(ret)
}
logd(laoleng.http.postJson(url, parms, dataType, timeout));
//单独指定超时时间
res = laoleng.http.postJson(url, null, null, timeout)
if (res) {
logd(JSON.stringify(res))
logd(res.code)
}
logd(laoleng.http.get(url, parms, dataType, timeout, headers));
返回值 | 类型 | 说明 |
---|---|---|
默认Object/字符串 | Object/string | 返回信息 |
其他
getIpLocation 获取当前IP的地址
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
无 | 无 | 无 | 无 |
logd(laoleng.http.getIpLocation())
返回值 | 类型 | 说明 |
---|---|---|
福建省三明市 电信 | string | 当前ip定位地址 |
getNetTimeStamp 获取10位网络时间戳
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
无 | 无 | 无 | 无 |
logd(laoleng.http.getNetTimeStamp());
返回值 | 类型 | 说明 |
---|---|---|
1616484744 | long | 10位网络时间戳 |
randomUA 随机UA
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
无 | 无 | 无 | 无 |
logd(laoleng.http.randomUA());
返回值 | 类型 | 说明 |
---|---|---|
随机UA | sting | 返回结果 |
getNetIp 获取网络IP
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
无 | 无 | 无 | 无 |
logd(laoleng.http.getNetIp())
返回值 | 类型 | 说明 |
---|---|---|
222.78.136.184 | string | 网络IP |
dingTalk 钉钉机器人
提示
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
token | 是 | string | 机器人token |
content | 是 | string | 发送内容 |
laoleng.http.dingTalk("xxxxxxxxxxxx", "一号机金币爆了,赶紧起床收钱了!!!")
返回值 | 类型 | 说明 |
---|---|---|
true/false | boolean | 是否成功 |