Hi my datatables ajax call is as below,
$(document).ready(function () {
$('#example').DataTable({
"ajax": '/api/get_requests'
});
So I am expecting the call my backend django server as below,
http://localhost:8080/api/get_requests/
But instead it generates an additional random numbers in the end and call is sent as below and my django server says wrong url and gives 404 error
http://localhost:8080/api/get_requests/?_=1511021359038
How can I force the datatables ajax call to not send the additional random numbers