| 1234567891011121314151617181920212223242526272829303132 |
- Page({
- onShareAppMessage() {
- return {
- title: '监听手机网络变化',
- path: 'page/API/pages/on-network-status-change/on-network-status-change'
- }
- },
- data: {
- isConnected: false,
- },
- onLoad() {
- const that = this
- wx.onNetworkStatusChange(function (res) {
- that.setData({
- isConnected: res.isConnected,
- networkType: res.networkType
- })
- })
- },
- onShow() {
- const that = this
- wx.getNetworkType({
- success(res) {
- that.setData({
- isConnected: res.networkType !== 'none',
- networkType: res.networkType
- })
- }
- })
- }
- })
|