gpt4 book ai didi

javascript - 将流类型应用于常量函数

转载 作者:行者123 更新时间:2023-11-28 03:11:35 25 4
gpt4 key购买 nike

我正在尝试将流程应用于某些代码。

非流代码来自 https://v3.material-ui.com/demos/tables/#sorting-amp-selecting 的 hooks 实现

const createSortHandler = property => event => {
onRequestSort(event, property);
};

所以这是一个匿名函数(分配给 const createSortHander),它接受一个属性并返回一个函数,该函数接受事件并返回一个恰好是 onRequestSort 的方法?我的理解正确吗?

到目前为止,我应用流程的尝试都失败了,我觉得我并没有真正理解这里的层次或抽象。

 const createSortHandler: (string) => void = (property: string) => {
(event: Event) => {
onRequestSort(event, property);
};
};

感谢任何帮助!

最佳答案

以下代码满足流程并且有效

 const createSortHandler: (string => (Event => void)) = (property: string) => (event: Event) => {
onRequestSort((event: Event), (property: string));
};

关于javascript - 将流类型应用于常量函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60057433/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com