//async 익명함수를 open_submitAlert 에 할당한다.
  open_submitAlert = async () => {
    const alert = await alertController.create({
      header: '제출확인',
      message: '정말로 제출하시겠습니까?',
      buttons: [
        {text: '아니오'},
        {text:'예',
          handler : () => {
          console.log(' 예. 클릭')
          }
        }]
    });
    await alert.present();
    // alert 오브젝트가 생성되고 난 다음에 표시한다.
  }
//async 익명함수를 open_submitAlert 에 할당한다.
  open_submitAlert = async () => {
    const alert = await alertController.create({
      header: '제출확인',
      message: '정말로 제출하시겠습니까?',
      buttons: [
        {text: '아니오'},
        {text:'예', handler : this.test()}
        ]
    });
    await alert.present();
    // alert 오브젝트가 생성되고 난 다음에 표시한다.
  }

  public test():any {
      console.log("test 함수")
  }