is there any way to get the date type columns in parse.com with custom date formatted, while requesting from angularjs $http get like order, limit? -


{   "results": [     {       "createdat": "2015-09-29t14:09:15.063z",       "objectid": "d12345zzcu",       "updatedat": "2015-09-29t14:09:15.063z",       "regdate": "2015-09-29t14:09:15.063z",       "value": "abc"     },     {       "createdat": "2014-08-23t07:00:00.000z",       "objectid": "312345ozzy",       "updatedat": "2014-08-23t07:00:00.000z",       "regdate": "2014-08-23t07:00:00.000z",       "value": "abd"     }   ] } 

is there way date type columns in parse.com custom date formatted, while requesting angularjs $http order, limit?

in above result, need result of "value" field in format below, date type in parse db.

{   "results": [     {       "createdat": "2015-09-29t14:09:15.063z",       "objectid": "d12345zzcu",       "updatedat": "2015-09-29t14:09:15.063z",       "regdate": "29/09/2015",       "value": "abc"     },     {       "createdat": "2014-08-23t07:00:00.000z",       "objectid": "312345ozzy",       "updatedat": "2014-08-23t07:00:00.000z",       "regdate": "23/08/2014",       "value": "abd"     }   ] } 


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -