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
Post a Comment