HTML5 DateTime + Ajax Jquery + SpringBoot @JsonFormat 예제
2582 단어 ajaxhtmljsonformatjquery
HTML5 DateTime + Ajax Jquery + SpringBoot @JsonFormat 예제
튜토리얼에서 JavaSampleApproach은 Html5 DateTime + Jquery Ajax + SpringBoot
@JsonFormat
를 사용하여 웹 애플리케이션을 빌드하는 방법을 보여줍니다.관련 게시물:
I. 기술
– 자바 1.8
– 메이븐 3.6.1
– 스프링 도구 모음 – 버전 3.8.1.RELEASE
– HTML 5
– 제이쿼리 아약스
– 부트스트랩
– 스프링 부트 – 1.5.7.RELEASE
Ⅱ. HTML5 DateTime + Ajax Jquery + SpringBoot
시간 입력 작업을 위해 Html5는 새로운 입력 유형 세트를 지원합니다.
new Date()
:
$("#taskForm").submit(function(event) {
// Prevent the form from submitting via the browser.
event.preventDefault();
// get data from submit form
var formTask = {
taskName : $("#taskName").val(),
startTime : new Date($("#startTime").val()),
endTime : new Date($("#endTime").val())
}
Date
개체를 사용자 정의된 형식으로 표시하려면 아래 코드Date
메서드를 사용할 수 있습니다.
function timeFormat(date){
if(date instanceof Date){
var isoDate = date.getFullYear() + '-' + (date.getMonth() + 1) + '-' + date.getDate();
var time = date.toLocaleString('en-US', { hour: 'numeric',minute:'numeric', hour12: true });
return isoDate + ' @ ' + time;
}else{
return "";
}
}
JSON.stringify()
에서 Json 형식을 사용하며 Date
객체는 UTC 표준 형식의 String 형식으로 변환됩니다. https://grokonez.com/frontend/html-5/html5-datetime-ajax-jquery-springboot-jsonformat-example
HTML5 DateTime + Ajax Jquery + SpringBoot @JsonFormat 예제
Reference
이 문제에 관하여(HTML5 DateTime + Ajax Jquery + SpringBoot @JsonFormat 예제), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/loizenai/html5-datetime-ajax-jquery-springboot-jsonformat-example-53nk텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)