1. 程式人生 > >java中,根據後臺傳遞的Date型別的資料,前臺如何接受問題

java中,根據後臺傳遞的Date型別的資料,前臺如何接受問題

//修改日期格式
	function getLocalTime(jsondate) { 
		jsondate=""+jsondate+"";//因為jsonDate是number型的indexOf會報錯
		if (jsondate.indexOf("+") > 0) {
		      jsondate = jsondate.substring(0, jsondate.indexOf("+"));
		    }
		    else if (jsondate.indexOf("-") > 0) {
		         jsondate = jsondate.substring(0, jsondate.indexOf("-"));
		    }
		    var date = new Date(parseInt(jsondate, 10));
		    var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
		    var currentDate = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
		    var hours = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
		    var minutes = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
		    var seconds = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
		    return date.getFullYear() + "-" + month + "-" + currentDate + " " + hours + ":" + minutes + ":" + seconds;
		}  

直接將日期傳遞進來會自動編譯