Próbuję wyświetlić niektóre dane w elementu datatable i skrypt tabeli używam jestdata json w formacie mm/dd/yy przed wyświetleniem w jquery elementu datatable
$('#userData').dataTable({
"ajax": {
"url": "${rc.getContextPath()}/module/roles/users-list",
"dataSrc": "",
},
"columns":[
{"data": "userId"},
{"data": "applicationId"},
{"data": "username"},
{"data": "firstName"},
{"data": "userCreated"},
{"data": "createdTime"},
{"data": "updatedTime"}
],
});
dane, które jest otrzymanych przy stole jest json i byłoby coś
[
{
"userId":179,
"applicationId":"pgm-apn",
"username":"collaborator.user3",
"password":"password1",
"email":"[email protected]",
"firstName":"Anthony",
"lastName":"Gonsalves",
"enabled":true,
"userCreated":"sitepmadm",
"userModified":"sitepmadm",
"createdTime":1422454697373,
"updatedTime":1422454697373
},
{
"userId":173,
"applicationId":"pgm-apn",
"username":"consumer.user",
"password":"password1",
"email":"[email protected]",
"firstName":"sherlock ",
"lastName":"homes",
"enabled":true,
"userCreated":"sitepmadm",
"userModified":"sitepmadm",
"createdTime":1422010854246,
"updatedTime":1422010854246
}
chcę wyświetlić daty jako właściwego datetime.Currently jest uzyskiwanie wyświetlane jako teh samej użądleniu w data.Is tam json dowolny sposób przekonwertować że w datatable
To działa ... dzięki .... czy istnieje sposób mogę uzyskać datę w następującym formacie '02/12/2015 18:26 23' ..... z dokładnym czasem –
Sprawdź date.getHours(), date.getMinutes(), date.getSeconds(). – nhkhanh
dziękuję, ale z jakiegoś powodu nie działa –