我是Jquery数据表的新手,我试图对服务器进行初始调用,但是它不起作用,我不知道是否是因为我在Sammy jS路由插件中调用它,但是当我在邮递员中运行该网址,效果很好:这是我的代码:
this.get('#/activities/match-stats', function (context) {
self = this;
$.ajax({
url: "http://localhost:8080/home/stats",
type: 'GET',
dataType: 'json',
success: function(data) {
context.app.swap('');
context.load('partials/match-stats.html')
.appendTo(context.$element())
.then(function (content) {
$('#basicDataTable').DataTable({
"processing":true,
"serverSide":true,
"ajax": {
url: "http://localhost:8080/activities/match-stats",
cache: false,
type: 'POST',
}
});
/** ko.applyBindings(homeModel(data.playerStats),document.getElementById('match-stats'));
initCard();
genericFunctions();
setInterval(getPlayerStats(), 600000); **/
});
}
});
});