Skip to content

Instantly share code, notes, and snippets.

@harunurkst
Created February 9, 2020 06:10
Show Gist options
  • Save harunurkst/57e878718e3bdde7c5cce0ece75ed847 to your computer and use it in GitHub Desktop.
Save harunurkst/57e878718e3bdde7c5cce0ece75ed847 to your computer and use it in GitHub Desktop.
Use JQuery datatable with Django Rest Framework
$(document).ready(function(){
$('#search-data').dataTable( {
destroy: true, // destroy previous datatable to remove error.
"ajax": url,
"columns": [
{"data":"latitude"},
{"data":"longitude"},
{"data":"data__product_data__Name"},
{"data":"id__count"},
]
} );
});
# API response for this code
{
"data": [
{
"longitude": 89.2408711,
"latitude": 23.8560988,
"data__product_data__Name": "GenWatt Diesel 200kW",
"id__count": 1
},
{
"longitude": 89.2409323,
"latitude": 23.8562526,
"data__product_data__Name": "GenWatt Diesel 200kW",
"id__count": 3
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment