我想要链接到datatable的特定页面,有排序等等。我通过在hash中保存状态来做到这一点:
window.DTapi = table.DataTable({
"stateSave": true,
"stateLoadCallback": function () {
if (location.hash) {
return JSON.parse(location.hash.replace('#', ''));
}
return undefined;
},
"stateSaveCallback": function (oSettings, oData) {
location.hash = JSON.stringify(oData);
}, ...
如果我加载的状态超过1小时,则数据表重新初始化。
所以,我的问题是: