问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 Bug connectWifi 客户端 6.7.3 2.4.0
- 当前 Bug 的表现(可附上截图)
调用connectWifi方法,输入错误的密码,依然返回success,并且正确连上当前wifi。如果在手机上操作删除或者忘记该wifi,再次调用这个方法,输入错误的密码,此时就会提示密码错误,无法连接。
- 预期表现
如果输入错误的密码,应该返回fail。
- 复现路径
- 提供一个最简复现 Demo
wx.connectWifi({
SSID: that.data.ssid,
BSSID: app.globalData.homeBSSID,
password: that.data.password,
success: function(res) {
console.log(res)
},
fail: function(res) {
console.log(res);
}
})
本文网址:http://www.91bianli.com/weixinxiaochengxu/37043.html