Heim > Artikel > Web-Frontend > So formatieren Sie Json, um das Datum zu übergeben
Benutzerdefinierte Datumstyp-Konvertierungsfunktion ChangeDateFormat, konvertieren Sie die Funktion in der Form //Date(1294499956278+0800)// in die Form 2014-5-2
function ChangeDateFormat(jsondate) { jsondate = jsondate.replace("/Date(", "").replace(")/", ""); 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(); return date.getFullYear() + "-" + month + "-" + currentDate; }
Das obige ist der detaillierte Inhalt vonSo formatieren Sie Json, um das Datum zu übergeben. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!