harmony 鸿蒙@system.network (网络状态)

  • 2025-06-16
  • 浏览 (2)

@system.network (网络状态)

说明: - 本模块首批接口从API version 3开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

导入模块

import network from '@system.network';

权限列表

ohos.permission.GET_WIFI_INFO

ohos.permission.GET_NETWORK_INFO

network.getType3+

getType(options?: {
  success?: (data: NetworkResponse) => void;
  fail?: (data: any, code: number) => void;
  complete?: () => void;
}): void

获取当前设备的网络类型。

系统能力: SystemCapability.Communication.NetManager.Core

参数:

参数名 类型 必填 说明
success Function 接口调用成功的回调函数,返回值为NetworkResponse
fail Function 接口调用失败的回调函数。
complete Function 接口调用结束的回调函数。

fail返回值:

错误码 说明
602 当前权限未声明。

示例:

export default class Network {
  getType() {
    network.getType({
      success: (data) => {
        console.log('success get network type:' + data.type);
      }
    });
  }
}

network.subscribe3+

subscribe(options?:{
  success?: (data: NetworkResponse) => void;
  fail?: (data: any, code: number) => void;
}): void

订阅当前设备的网络连接状态。如果多次调用,会覆盖前一次调用。

系统能力: SystemCapability.Communication.NetManager.Core

参数:

参数名 类型 必填 说明
success Function 网络发生变化的回调函数。返回值为NetworkResponse
fail Function 接口调用失败的回调函数。

fail返回值:

错误码 说明
602 当前权限未声明。
200 订阅失败。

示例:

export default class Network {
  subscribe() {
    network.subscribe({
      success: (data) => {
        console.log('success get network type:' + data.type);
      }
    });
  }
}

network.unsubscribe3+

unsubscribe(): void

取消订阅设备的网络连接状态。

系统能力: SystemCapability.Communication.NetManager.Core

示例:

import network from '@system.network';

network.unsubscribe();

NetworkResponse3+

系统能力: SystemCapability.Communication.NetManager.Core

名称 类型 必填 说明
metered boolean 是否按照流量计费。true:按照流量计费;false:不按照流量计费。
type string 网络类型,可能的值有2g,3g,4g,5g,wifi,none等。

你可能感兴趣的鸿蒙文章

harmony 鸿蒙Network Kit(网络服务)

harmony 鸿蒙NetConn_ConnectionProperties

harmony 鸿蒙NetConn_HttpProxy

harmony 鸿蒙NetConn_NetAddr

harmony 鸿蒙NetConn_NetCapabilities

harmony 鸿蒙NetConn_NetConnCallback

harmony 鸿蒙NetConn_NetHandle

harmony 鸿蒙NetConn_NetHandleList

harmony 鸿蒙NetConn_NetSpecifier

harmony 鸿蒙NetConn_Route

0  赞