애플릿 학습 (9): 어떤 그룹이 어떤 요소를 포함하는지 조회하기

애플릿 학습 (9): 어떤 그룹이 어떤 요소를 포함하는지 조회하기


2019년 9월 23일


코드를 넣는 건 참고 코드예요.
var char = '1'
var charArr = ['1','2','3']
var index = charArr.indexOf(char)
if (index <0){
    console.log('          ')
}else{
    console.log('         ')
}

이것은 나의 코드로 로그인 신분 판단을 하는 데 쓰인다
//  :  .indexOf  ,0     ,-1     
if (!app.globalData.User.indexOf(ret.data.bz)){   //     
   that._getCache(ret.data);   //      
   app.globalData.InspectionRate = ret.data.qq;  //         
   wx.reLaunch({url: '/pages/worker/homePage/homePage'})
 }else if (!app.globalData.Admin.indexOf(ret.data.bz)){    //     
   console.log('       ')
 } else {      //    
   setTimeout(function () {
     wx.hideLoading()
     app.func.toast('      ', 2, 1400);
   }, 2000)
 }

그 중
app.globalData.User==》             
ret.data.bz==》        

여기서 다음 두 가지를 주의해야 한다. 첫째,
[  ].indexOf('  ')
//    0,       
//    -1,      

두 번째:
if(1){
	console.log('  ,  if')
}
if(0){
	console.log('  ,   if')
}
if(-1){
	console.log('  ,  if')
}
//  ,      ,        "!",       if   

좋은 웹페이지 즐겨찾기