Heim > Artikel > WeChat-Applet > So verbinden Sie das Miniprogramm mit WLAN
In diesem Artikel wird hauptsächlich das WeChat-Applet vorgestellt, um die Funktion der WLAN-Verbindung zu realisieren, und die Modulinitialisierung, Konfiguration, Verbindung und andere damit verbundene Betriebsfähigkeiten des WeChat-Applets zum Betreiben der WLAN-Verbindung anhand von Beispielen analysiert kann darauf verweisen
Wie man über ein Miniprogramm eine Verbindung zu WIFI herstellt
Wenn das WLAN-Konto und das WLAN-Passwort bekannt sind, wird die Der folgende Prozess wird im Allgemeinen verwendet, um eine WLAN-Verbindung herzustellen.
Empfohlenes Lernen: Mini-ProgrammentwicklungTutorial
Wi-Fi-Schnittstellenaufruf:
1. Android
rrree2. iOS (wird nur von iOS 11 und höher unterstützt):
startWifi —> connectWifi —> onWifiConnected
Die Schritte sind wie folgt:
1 des Telefons:
startWifi —> connectWifi —> onWifiConnected
2. Mit bekanntem WLAN verbinden
connectWifi:function() { var that = this; //检测手机型号 wx.getSystemInfo({ success: function(res) { var system = ''; if (res.platform == 'android') system = parseInt(res.system.substr(8)); if (res.platform == 'ios') system = parseInt(res.system.substr(4)); if (res.platform == 'android' && system < 6) { wx.showToast({ title: '手机版本不支持', }) return } if (res.platform == 'ios' && system < 11.2) { wx.showToast({ title: '手机版本不支持', }) return } //2.初始化 Wi-Fi 模块 that.startWifi(); } }) }, //初始化 Wi-Fi 模块 startWifi: function() { var that=this wx.startWifi({ success: function() { //请求成功连接Wifi that.Connected(); }, fail: function(res) { this.setData({ wx.showToast({ title: '接口调用失败', }) }); } }) },
3.wxml-Verbindungstaste
Connected: function() { var that=this wx.connectWifi({ SSID: that.data.accountNumber, BSSID: that.data.bssid, password: that.data.password, success: function(res) { wx.showToast({ title: 'wifi连接成功', }) }, fail: function(res) { wx.showToast({ title: 'wifi连接失败', }) } }) }, //使用的参数 data:{ accountNumber: '',//Wi-Fi 的SSID,即账号 bssid: '',//Wi-Fi 的ISSID password: '',//Wi-Fi 的密码 }
PHP Chinesische Website, eine große Anzahl von MySQL-Video-Tutorials, herzlich willkommen, kostenlos online zu lernen!
Das obige ist der detaillierte Inhalt vonSo verbinden Sie das Miniprogramm mit WLAN. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!