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