Microseer.getWifiInfo(object)

获取客户端当前wifi信息

object 参数说明

参数名 类型 必填 说明
success function 接口调用成功的回调函数
fail function 接口调用失败的回调函数
complete function 接口调用结束的回调函数(调用成功、失败都会执行)

sucess 回调参数说明

属性 类型 说明
SSID string wifi SSID
BSSID string wifi BSSID

eg:

var object = {
    success: function(res) {
        console.log(res.SSID);
        console.log(res.BSSID);
        alert("当前加入wifi名称: " + res.SSID);
    },
    fail: function(res) {
        console.error(res);
    }
}

Microseer.getWifiInfo(object);

results matching ""

    No results matching ""