백그라운드에서 밀리초 수를 추출하고 데이터베이스에서 값을 가져오는datetime 형식을 페이지에서 날짜 형식으로 변환합니다

2139 단어
코드는 다음과 같습니다.
/**
 *       Date  yyyy-mm-dd hh
 * @returns
 */
function  gettime(){
	var date = new Date();
	var y = date.getFullYear();
    var m = date.getMonth() + 1;
    m = m < 10 ? ('0' + m) : m;
    var d = date.getDate();
    d = d < 10 ? ('0' + d) : d;
    var h = date.getHours();
    var minute = date.getMinutes();
    minute = minute < 10 ? ('0' + minute) : minute;
    var datetime = y + '-' + m + '-' + d+' '+h+':'+minute
    return datetime;
}

function getMonth(date){ 
	  var month = ""; 
	  month = date.getMonth() + 1; //getMonth()      0-11 
	  if(month<10){ 
	    month = "0" + month; 
	  } 
	  return month; 
	} 
	//  01-30    
	function getDay(date){ 
	  var day = ""; 
	  day = date.getDate(); 
	  if(day<10){ 
	    day = "0" + day; 
	  } 
	  return day; 
	}
	//    
	function getHours(date){
	  var hours = "";
	  hours = date.getHours();
	  if(hours<10){ 
	    hours = "0" + hours; 
	  } 
	  return hours; 
	}
	//   
	function getMinutes(date){
	  var minute = "";
	  minute = date.getMinutes();
	  if(minute<10){ 
	    minute = "0" + minute; 
	  } 
	  return minute; 
	}
	//   
	function getSeconds(date){
	  var second = "";
	  second = date.getSeconds();
	  if(second<10){ 
	    second = "0" + second; 
	  } 
	  return second; 
	}

	/**
	 *    long       
	 * @param longTypeDate
	 * @returns
	 */
	function datetimeFormat_2(longTypeDate){ 
		  var datetimeType = ""; 
		  var date = new Date(); 
		  date.setTime(longTypeDate);
		  datetimeType = date.getFullYear()+"-"+getMonth(date)+"-"+getDay(date)+" "+getHours(date)+":"+getMinutes(date)+":"+getSeconds(date);//yyyy-MM-dd 00:00:00    
		  return datetimeType;
	}


전환이 필요한 곳은 어디든지 방법을 쓰면 된다.
예를 들어 내가 데이터 테이블에서 호출하면 다음과 같다.
formatter:function(value,row,index){
	        	var unixTimestamp = new Date(row.chc_create_date) ;
	        	return datetimeFormat_2(unixTimestamp);
	        }

좋은 웹페이지 즐겨찾기