DataTables: Custom Response Handling
问题 I started working on AngularJS and DataTables and wonder whether it is possible to customize the response DataTables is expecting. The current expectation of the DataTables plugin is something like this: { "draw": 1, "recordsTotal": 57, "recordsFiltered": 5, "data": [...] } On the server end, the API's are being handled by django-tastypie The response from server is: { meta: { limit: 20, next: null, offset: 0, previous: null, total_count: 2 }, objects: [...] } So, is there a way to tweak