antDesign table按时间排序

方法:

{		//column中的时间列
        title: "发送请求时间",
        dataIndex: "createTime",
        key: "createTime",
        //排序方法
        sorter: (a, b) => { 
          let aTime = new Date(a.createTime).getTime();
          let bTime = new Date(b.createTime).getTime();
          console.log("a",a);
          return aTime - bTime;
        },
        width: "10vw"
      },

注意这里的a为table中一行的数据,所以new Date(a.createTime)中的createTime参数就上述代码中设置的key: "createTime"
antDesign table按时间排序_第1张图片

你可能感兴趣的:(antd,react)