我正在尝试在编辑它之后获取我的表的内容但是当我通过使用fnGetData()检查我得到的内容是旧内容。 我错过了什么吗? (我正在使用DataTables v1.10.8)
function save(){ // it's the function I call after editing the table rows by submiting
var tableContent = $('#editableTable').dataTable();
console.log(tableContent.fnGetData()); // here I get the old content
$.ajax({
type : "POST",
url : "ajax",
dataType : 'json',
data : {
json : JSON.stringify(tableContent.fnGetData())
}
});
}
答案 0 :(得分:1)
我忘了添加这两行!现在它的工作表示感谢NiallMitch14的评论。
var aPos = oTable.fnGetPosition( this );
oTable.fnUpdate( value, aPos[0], aPos[1] );