收藏
回答

为什么部分手机wifi连接返回的结果与实际连接状态不一样?

为什么部分手机wifi连接返回的结果与实际连接状态不一样?

返回结果连接成功,但是实际连接的wifi不是选择的wifi


回答关注问题邀请回答
收藏

2 个回答

  • Demons
    Demons
    2022-12-08

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2022-12-08
    有用
    回复 2
    • 汐汐-客服-小程序朋友圈广告
      汐汐-客服-小程序朋友圈广告
      2022-12-08
      您好,可以帮忙看一下我发的贴吗,下证一个多月了,服务号认证法人扫码显示工商数据返回:“企业信息或法定代表人信息不一致”。法定代表人验证失败。,微信实名认证和绑定银行卡都是法人的,工商局工作人员说没有信息错误,现在就是卡在扫码这里了,原始id:gh_d68cdabf3154,主体名称:南岸区野兽鲜生生活超市
      2022-12-08
      回复
    • 杨杨
      杨杨
      2022-12-09
      connectWifi() {
          // uni.showLoading({
          // title: '连接中'
          // })
          let that = this
          let object = {
           SSID: this.SSID,
           // BSSID: "08:9b:4b:97:44:ad",
           password: this.password,
           partialInfo: true,
          }
          if(this.bssid){
           object = {
            SSID: this.SSID,
            BSSID: this.bssid,
            password: this.password,
            partialInfo: true,
           }
          }
          object = Object.assign(object, {
           success: function(n) {
            console.log(n, '>>>>>>>>>><<<<<<<')
            // "ios" == t.SystemInfo.platform && setTimeout(function() {
            // if (!t.is_connect) return t.is_linked = !1, t.is_loading = !1, console.log("连接超时,无效"),
            // t.$refs.uToast.show({
            // message: "连接失败,自动复制密码",
            // complete: function() {
            // t.onCopyPssword();
            // }
            // }), !1;
            // }, 1e4);
            if (n.errCode == 0) {
             //连接成功
             that.linkWifi()
            } else {
             uni.showModal({
              title: '提示',
              content: that.getErrCode(n.errCode),
              showCancel: false,
              success: function(res) {
               uni.navigateBack()
              }
             });
            }
           },
           fail: function(n) {
            console.log(n, '>>>>>>>>>>')
            let content = n.errMsg;
            if (n.errCode) {
             content = that.getErrCode(n.errCode)
            }
            that.connectWifiTwo()
            // uni.showModal({
            // title: '提示',
            // content: content,
            // showCancel: false,
            // success: function(res) {
            // uni.navigateBack()
            // }
            // });
           }
          })
          wx.connectWifi(
           object
          );
         },
         connectWifiTwo() {
          // uni.showLoading({
          // title: '连接中'
          // })
          let that = this
          let object = {
           SSID: this.SSID,
           // BSSID: "08:9b:4b:97:44:ad",
           password: this.password,
           partialInfo: true,
           forceNewApi:true,
           maunal:true
          }
          if(this.bssid){
           object = {
            SSID: this.SSID,
            BSSID: this.bssid,
            password: this.password,
            partialInfo: true,
            forceNewApi:true,
            maunal:true
           }
          }
          object = Object.assign(object, {
           success: function(n) {
            console.log(n, '>>>>>>>>>><<<<<<<')
            // "ios" == t.SystemInfo.platform && setTimeout(function() {
            // if (!t.is_connect) return t.is_linked = !1, t.is_loading = !1, console.log("连接超时,无效"),
            // t.$refs.uToast.show({
            // message: "连接失败,自动复制密码",
            // complete: function() {
            // t.onCopyPssword();
            // }
            // }), !1;
            // }, 1e4);
            if (n.errCode == 0) {
             //连接成功
             that.linkWifi()
            } else {
             uni.showModal({
              title: '提示',
              content: that.getErrCode(n.errCode),
              showCancel: false,
              success: function(res) {
               uni.navigateBack()
              }
             });
            }
           },
           fail: function(n) {
            console.log(n, '>>>>>>>>>>')
            let content = n.errMsg;
            if (n.errCode) {
             content = that.getErrCode(n.errCode)
            }
            uni.showModal({
             title: '提示',
             content: content,
             showCancel: false,
             success: function(res) {
              uni.navigateBack()
             }
            });
           }
          })
          wx.connectWifi(
           object
          );
         },
      2022-12-09
      回复
  • 杨杨
    杨杨
    2022-12-09

    connectWifi() {

    // uni.showLoading({

    // title: '连接中'

    // })

    let that = this

    let object = {

    SSID: this.SSID,

    // BSSID: "08:9b:4b:97:44:ad",

    password: this.password,

    partialInfo: true,

    }

    if(this.bssid){

    object = {

    SSID: this.SSID,

    BSSID: this.bssid,

    password: this.password,

    partialInfo: true,

    }

    }

    object = Object.assign(object, {

    success: function(n) {

    console.log(n, '>>>>>>>>>><<<<<<<')

    // "ios" == t.SystemInfo.platform && setTimeout(function() {

    //     if (!t.is_connect) return t.is_linked = !1, t.is_loading = !1, console.log("连接超时,无效"), 

    //     t.$refs.uToast.show({

    //         message: "连接失败,自动复制密码",

    //         complete: function() {

    //             t.onCopyPssword();

    //         }

    //     }), !1;

    // }, 1e4);

    if (n.errCode == 0) {

    //连接成功

    that.linkWifi()

    } else {

    uni.showModal({

    title: '提示',

    content: that.getErrCode(n.errCode),

    showCancel: false,

    success: function(res) {

    uni.navigateBack()

    }

    });

    }

    },

    fail: function(n) {

    console.log(n, '>>>>>>>>>>')

    let content = n.errMsg;

    if (n.errCode) {

    content = that.getErrCode(n.errCode)

    }

    that.connectWifiTwo()

    // uni.showModal({

    // title: '提示',

    // content: content,

    // showCancel: false,

    // success: function(res) {

    // uni.navigateBack()

    // }

    // });

    }

    })

    wx.connectWifi(

    object

    );

    },

    connectWifiTwo() {

    // uni.showLoading({

    // title: '连接中'

    // })

    let that = this

    let object = {

    SSID: this.SSID,

    // BSSID: "08:9b:4b:97:44:ad",

    password: this.password,

    partialInfo: true,

    forceNewApi:true,

    maunal:true

    }

    if(this.bssid){

    object = {

    SSID: this.SSID,

    BSSID: this.bssid,

    password: this.password,

    partialInfo: true,

    forceNewApi:true,

    maunal:true

    }

    }

    object = Object.assign(object, {

    success: function(n) {

    console.log(n, '>>>>>>>>>><<<<<<<')

    // "ios" == t.SystemInfo.platform && setTimeout(function() {

    //     if (!t.is_connect) return t.is_linked = !1, t.is_loading = !1, console.log("连接超时,无效"), 

    //     t.$refs.uToast.show({

    //         message: "连接失败,自动复制密码",

    //         complete: function() {

    //             t.onCopyPssword();

    //         }

    //     }), !1;

    // }, 1e4);

    if (n.errCode == 0) {

    //连接成功

    that.linkWifi()

    } else {

    uni.showModal({

    title: '提示',

    content: that.getErrCode(n.errCode),

    showCancel: false,

    success: function(res) {

    uni.navigateBack()

    }

    });

    }

    },

    fail: function(n) {

    console.log(n, '>>>>>>>>>>')

    let content = n.errMsg;

    if (n.errCode) {

    content = that.getErrCode(n.errCode)

    }

    uni.showModal({

    title: '提示',

    content: content,

    showCancel: false,

    success: function(res) {

    uni.navigateBack()

    }

    });

    }

    })

    wx.connectWifi(

    object

    );

    },

    2022-12-09
    有用
    回复
登录 后发表内容