API datatable page –

fnReloadAjax()子弹:

Note: To reload data when using server-side processing,just use the

built-in API function fnDraw rather than this plug-in.

因此,您最好使用fnDraw.

[编辑]实际上,你的通话顺序应该是:

// you don't have to use $.json because you don't use the downloaded data

// first,ask the server to delete the data

$.ajax({

url: urlToDelete,success: function() {

// if it worked,ask datatable to redraw the table with the new data

$("#example").dataTable().fnDraw();

// if this js function does anything useful (like deleting the row),then call it:

Success();

},error: function() {

// display any error (like server couldn't be reached...),or at least try to log it

引自API datatable page –fnReloadAjax()子弹:Note: To reload data when using server-side processing,just use thebuilt-in API function fnDraw rather than this plug-in.因此,您最好使用fnDraw.[编辑]实际上,你的通话顺序应该是:// you ... 内容备份: window.location.Reload()应该是 刷新 .(如果有 数据 提交的话,会提示是否提交的(是和否选项)) window.location.href=window.location.href; --------------------------------...
使用 JQ 将 XML 数据 转换为 JSON 数据 可以使用 ` jq ` 命令。 例如,假设你有一个名为 `input.xml` 的 XML 文件,你可以使用以下命令将其转换为 JSON 格式: cat input.xml | jq -r '@xml' > output.json 这将使用 JQ 的 `@xml` 内建函数将 XML 数据 解析为 JSON 对象,并将其写入名为 `output.json` 的文件中。 注意:这种方法只能用于将符合 XML 标准的文本转换为 JSON,如果 XML 文件不符合标准,则可能会出现解析错误。