애플 릿 이 네트워크 상태 가 없 을 때 알림 정 보 를 새로 고치 지 않 습 니 다.

502 단어
  .wxml  

.js  

1. onload         

    //       no net
    wx.onNetworkStatusChange(function(res){
      console.log(res)
      if(res.networkType == "none"){
        that.setData({nonet: false})
      }else{
        that.setData({nonet: true})
      }
    })

2. pages{}      

Page({
  data:{
     
        nonet: true
  }

네트워크 디 버 깅 으로 전환 할 수 있 습 니 다!

좋은 웹페이지 즐겨찾기