获取当前网络环境
methodName: getNetworkType
额外参数:
无
success 回调函数
参数
Object res
属性 | 类型 | 描述 |
---|---|---|
networkType | String | 当前网络环境 |
success | String | 描述接口调用成功或失败。"true": 成功;"false":失败 |
networkType 值说明
networkType 值 | 描述 |
---|---|
wifi | wifi 网络 |
2g | 2g 网络 |
3g | 3g 网络 |
4g | 4g 网络 |
5g | 5g 网络 |
unknown | Android 下不常见的网络类型 |
none | 无网络 |
fail 回调函数
参数
Object res
属性 | 类型 | 描述 |
---|---|---|
success | String | 描述接口调用成功或失败。"true": 成功;"false":失败 |
errMsg | String | 错误信息 |
调用示例
const dlt = window['@transsion/byteh5bridge'];
const canCallDlt = dlt && window.dltms && window.dltms.isMiniShellGame();
if (canCallDlt) {
dlt.callApi('getNetworkType', {
success: (res) => {
console.log('success: ', res);
},
fail: (res) => {
console.log('fail: ', res);
},
complete: (res) => {
console.log('complete: ', res);
},
});
}