Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- sha-2 root
- html pdf 변환
- php 이미지 url 검증 함수
- PHP 구글 OTP 연동
- wkhtmltopdf 실행 오류
- 비밀번호정규식
- 우분투 mysql 비밀번호 없이 로그인 될때
- php 배열제거
- javascript
- 숫자 3자리(천단위) 마다 콤마 찍기
- 자바스크립트비밀번호검증
- usb efi 시스템 파티션 삭제
- mysql root 비밀번호 변경
- 아파치 웹 서버의 정보 숨기기
- 비밀번호검증정규식
- bootstrap modal
- libxrender1
- mysqldump: Got error: 1045
- apache mod rewrite
- PHP 구글 OTP 인증
- 구글 OTP 인증
- httpd.conf 보안 설정
- 파라미터 & 오류
- apple push notification service (apns) is changing
- modsecurity 설치
- bootstrap
- PHP 정규식 예제
- (using password: YES)" when trying to connect
- mariadb upgrade
- group_concat 구분자
Archives
- Today
- Total
목록Program Language (114)
투덜이 개발자
swift 앱 종료 하기 예제
실행중인 앱을 종료하고 싶을때가 이벤트 처리 import UIKit class ViewController: UIViewController { @IBAction func btnClick(_ sender: Any) { let alert = UIAlertController(title: "앱종료하시겠습니까?", message : "저장하지 않은 내용은 삭제 될 수 있습니다.", preferredStyle: .alert) alert.addAction(UIAlertAction(title: "예", style: .default, handler: { action in self.showToast(message: "앱종료 실행") // 토스트 메세지 출력 UIControl().sendAction(#selector(URLS..
Program Language/Swift
2021. 5. 28. 14:39
[ajax] Error code 0, error undefined
HTML form 내에서 ajax를 사용하다 간혈적으로 Error code 0, error undefined 메세지 발생 error: function (request, status, error) { alert('code: '+request.status+"\n"+'message: '+request.responseText+"\n"+'error: '+error); }// 요청 실패. 원인 : ajax 페이지 호출이 완료되기 전에 페이지 전환으로 생기는 문제 해결 : ajax 호출되는동안 페이지 이동을 못하게 숨기거나 막아서 해결
Program Language/JavaScript & Jquery
2021. 5. 28. 11:57