Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

JS 날짜 시간을 MySQL 날짜 시간으로 변환하는 방법은 무엇입니까?


toISOString() 함수를 사용하여 JS 날짜 시간을 MySQL 날짜 시간으로 변환할 수 있습니다.

자바스크립트의 예를 살펴보겠습니다.

<!DOCTYPE html>
<html>
   <head>
      <title>Web Page Design</title>
      <script>
         document.writeln(new Date().toISOString().slice(0, 19).replace('T', ' '));
      </script>
   </head>
<body>
   <br>Current Date is displayed above...
</body>
</html>

출력

다음은 출력입니다.

2018-11-23 11:14:38
Current Date is displayed above...