私が自分のドメインを検索しているとき、http://domain.com
それはうまく機能します。しかし、検索しhttp://www.domain.com
てもうまくいきません。
function dataTableInitialisation() {
myOTable = $("#EmployeesTable").dataTable({
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "/Employees/FetchDetails?Deptid=" + @model.Id + "&thresholdLow=4&threshold=100",
"sPaginationType": "full_numbers",
"bDestroy": true,
"aaSorting": [[1, 'desc']],
"asStripClasses": ['color01', 'color03'],
"aoColumnDefs": [{
"aTargets": [2],
"bVisible": false
}, {
"aTargets": [1],
"fnRender": function (oObj) {
return "<a href='#showemployees' rel='" + oObj.aData[2] + "'></a>";
}
}]
});
}
});
検索http://www.
すると、1 つではなく 2 つの ajax リクエストが自動的に生成されます。Jquery Datatableでこれを修正するにはどうすればよいですか?