嗨,我想將json日期轉換回正常的dd/mm/yy日期。將json結果轉換爲適當的日期 - javascript
我怎麼能轉換Customer.DateOfBirth DD/MM/YY從一個JSON日期回正常日期?
在這裏我的代碼?
// parse the date
var Birth = Customer.DateOfBirth;
if (Birth != '') {
// get the javascript date object
Birth = DateFromString(Birth, 'dd/MM/yyyy');
if (Birth == 'Invalid Date') {
Birth = null
}
else {
// get a json date
Birth = DateToString(Birth);
//REPLACE JSON DATE HERE WITH NORMAL DATE??
}
}
任何建議將是偉大的。 感謝
那麼什麼是問題嗎? – hindmost 2014-10-30 10:22:47
'Birth'變量的格式是什麼,'DateFromString'和'DateFromString'函數做了什麼? – 2014-10-30 10:22:59
customer.DateOfBirth是dd/mm/yy ..我的問題是它保存爲json日期,現在我需要轉換它。我不知道我會如何去做.. – 2014-10-30 10:25:07