Antd ProTable columns 关于时间的排序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Antd ProTable columns 关于时间的排序相关的知识,希望对你有一定的参考价值。
参考技术Atitle:'创建时间',
dataIndex:'create_time',
key:'create_time',
valueType:'dateRange',
// sorter: (a, b) => new Date(a.create_time) - b.create_time
sorter: (a, b) =>new Date(a.create_time.replace(/-/, '/')) -new Date(b.create_time.replace(/-/, '/'))
,
Ant Design Pro里的ProTable、ProLayout等
参考技术A 找到文档了... AntDesign Pro中的高级组件基本都在这: https://procomponents.ant.design/components前言 - 官网没找到Protable的说明文档 ,这些是从依赖包里的 README.md 里扒来的;
还有 - 下面request方法要求返回一个 object ,格式如下:
codesandbox
pro-table 在 antd 的 table 上进行了一层封装,支持了一些预设,并且封装了一些行为。这里只列出与 antd table 不同的 api。
有些时候我们要触发 table 的 reload 等操作,action 可以帮助我们做到这一点。
当前列值的枚举
MIT
以上是关于Antd ProTable columns 关于时间的排序的主要内容,如果未能解决你的问题,请参考以下文章
Ant Design Pro里的ProTable、ProLayout等