ホームページ >ウェブフロントエンド >jsチュートリアル >JavaScript で Unix タイムスタンプから時刻を抽出するにはどうすればよいですか?
MySQL データベースで時刻値を表すために使用される Unix タイムスタンプは、特定のアプリケーションの時刻コンポーネントのみの抽出が必要になる場合があります。 。 Unix タイムスタンプを JavaScript の時刻に変換するには、次の手順に従います。
JavaScript 日付の作成オブジェクト:
let unix_timestamp = 1549312452; let date = new Date(unix_timestamp * 1000); // Convert to milliseconds
抽出時間コンポーネント:
// Hours: const hours = date.getHours(); // Minutes: const minutes = "0" + date.getMinutes(); // Pad zero if necessary // Seconds: const seconds = "0" + date.getSeconds(); // Pad zero if necessary
時間:
const formattedTime = hours + ':' + minutes.substr(-2) + ':' + seconds.substr(-2);
const unix_timestamp = 1549312452; // Create a JavaScript Date object based on the timestamp // multiplied by 1000 so that the argument is in milliseconds, not seconds const date = new Date(unix_timestamp * 1000); // Hours part from the timestamp const hours = date.getHours(); // Minutes part from the timestamp const minutes = "0" + date.getMinutes(); // Seconds part from the timestamp const seconds = "0" + date.getSeconds(); // Will display time in 10:30:23 format const formattedTime = hours + ':' + minutes.substr(-2) + ':' + seconds.substr(-2); console.log(formattedTime);
以上がJavaScript で Unix タイムスタンプから時刻を抽出するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。