1. 程式人生 > >資料庫查出來的明明是時間返回卻變成一串無規律的數字。解決方法 /** * 時間戳轉時間格式 * @param jsondate 得到的number 型時間數 */ function

資料庫查出來的明明是時間返回卻變成一串無規律的數字。解決方法 /** * 時間戳轉時間格式 * @param jsondate 得到的number 型時間數 */ function

資料庫查出來的明明是時間返回卻變成一串無規律的數字。解決方法

/**
 * 時間戳轉時間格式
 * @param
  jsondate 得到的number 型時間數
 */

  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;
}  

問題解決(ps:有一點要注意的是得到的可能是number型的,在js中不能使用indexOf方法,需要加引號轉為字元創格式)

參考http://www.bubuko.com/infodetail-832252.html