반응형 개발/개발 필기23 MySQL 3306 포트 종료하기 이전 인스턴스 종료 확인mysql 사용 중 3306 포트가 활성화 되어 있는데 다시 실행할때 port 가 죽지 않아 실행이 되지 않을 때 tasklist | findstr mysqld C:\Windows\system32>tasklist | findstr mysqldmysqld.exe 6252 Services 0 7,656 Kmysqld.exe 7928 Services 0 60,960 K taskkill /F /IM mysqld.exe C:\Windows\system32>taskkill /F /IM mysqld.exeSUCCESS: The process "m.. 2024. 9. 12. python 실행 방법 파이썬 설치 했다면 python3 app.py 잊지 말기 2024. 4. 21. forEach 다음 내용이 먼저 돌아가요 배열을 forEach에 돌리고 작업을 하는데 안에 await 이라는 코드가 있어 다 돌고 다음 코드가 진행을 하겠지? 하고 코드를 만들었습니다. let deleteCount = 0; subProductCheckboxes.forEach(async checkbox => { if(checkbox.checked){ const product_id = checkbox.value; const result = await deleteProductData(product_id); console.log(result); if(result.code === 200){ deleteCount++; } } }); console.log(deleteCount); if(deleteCount > 0){ alert("삭제되었습니다."); win.. 2024. 4. 19. 이전 1 ··· 3 4 5 6 다음 반응형