Connected: function (_this) {
wx.showLoading({
title: '正在连接...',
mask: true
})
wx.connectWifi({
SSID: 'yingdaoyinboshi',
password: 'jingshuoprint',
forceNewApi: true,
success: function (res) {
wx.hideLoading()
console.log(res)
_this.setData({
endError: 'wifi连接成功',
pwifi: true,
startWifi: false,
loop: true
});
_this.getWifi()
},
fail: function (res) {
wx.hideLoading()
console.log(res)
_this.setData({
startError: '自动WIFI连接失败,请重新进入小程序'
});
}
})
},
遇到同样问题
奉上我的解决办法仅供参考
解决:将要连接的SSID 从手机中“已保存的WLAN”中删除即可。
问题复现:
修改手机WLAN设置中 此SSID“自动连接”属性 即可复现
解决: 连接时加字段:forceNewApi: true 或者连接失败时,提示用户手动连接
2021年的问题,2023年了有人解决了吗
2023年过来的。。。也遇到这个问题了。。。
初始化之后调用连接wifi的接口一直走失败