stateRestore.states()
自:StateRestore 1.0.0 起
从 StateRestore 中获取状态。
请注意 - 此属性需要 DataTables 的 StateRestore 扩展。
描述
此方法提供获取 StateRestore 扩展管理的状态的能力。
stateRestore.states()
获取一个参数 identifier
。这是一个字符串数组,用于在 StateRestore 中识别状态。
返回包含所需状态的 DataTables API 实例。此方法主要用于链接。
类型
函数 stateRestore.state()
- 描述
从 StateRestore 扩展中检索已存储的状态。
- 参数
名称 类型 可选 1 identifier
否 用于识别所需状态的字符串数组。
- 返回
返回包含所需状态的 DataTables API,以便进行链接。
示例
获取名为 “新状态”和“旧状态”的状态
var table = new DataTable('#myTable', {
layout: {
topStart: {
buttons: ['createState', 'savedStates']
}
}
});
table.stateRestore.states(['New State', 'Old State']);
相关
以下选项直接相关,并且在您的应用开发中可能同样有用。