Ajax는 컨트롤러에서 반환 한 값을 승인합니다.Date/DateTime 유형으로 varchar 유형 표시
ri_startDate and ri_endDate
유형은 DB (MySQL의)의 날짜입니다.
어떻게 위의 값을 날짜로 다시 변환합니까? (in, ajax)
$(function()
{
$('#doctorSelect').change(function()
{
$('#selectGugan').show();
var doctor_idx = $(this).val();
$.ajax
({
type: 'POST',
url: 'selectDoctor.do',
data: {"d_idx":doctor_idx},
dataType: 'JSON',
success: function(sectionDate)
{
// How do I convert the above values back to Date?
console.log("sectionDate : " + sectionDate.ri_startDate);
},
error: function(sectionDate)
{
console.log("data : " + sectionDate);
}
});
});
});
그리고이 값을 넣고 싶습니다. 어떻게해야합니까?
<div class="inputdname">
<select class="helloDoctor_2" id="doctorSelect">
<option>Choice Doctor</option>
<option value="" name="ri_idx" id="ri_idx"></option>
</select>
</div>
'VAR 날짜 = 새로운 날짜 ('응답 날짜'); date.getDate() + "/"+ (date.getMonth() + 1) + "/"+ date.getFullYear();'시도해 볼 수 있습니다 –
@KalaiselvanA 이것을 yyy-MM로 변경하고 싶습니다. -dd 형식. 어떻게해야합니까? –
date.getFullYear() + "/"+ (date.getMonth() + 1) + "/"+ date.getDate() –