Page({
connectToWifi: function() {
wx.startWifi({
success: (res) => {
this.connect();
},
fail: (err) => {
console.log(err);
}
});
},
connect: function() {
wx.connectWifi({
SSID: '',
BSSID: '',
password: '',
success: (res) => {
console.log(res);
},
fail: (err) => {
console.log(err);
},
});
}
})
在我手机上能用,苹果手机也能用,但是部分安卓老机器用不了,是什么原因呢,是兼容性问题吗
没有报错吗
开真机调试看看,手机多老?