js回调函数

this.test((res)=>{

  console.log(res);//接受的回调参数

})

 

test(callback){

  if(true){

    callback("Y");

  }else{

    callback("N")

  }

}

posted @ 2020-04-13 09:57  小白咚  阅读(304)  评论(0编辑  收藏  举报