如何在打字稿中的散列中存储函数?

问题描述 投票:-1回答:2

我有一种情况,需要在查找表中将函数作为值存储,键作为字符串存储。这些函数基本上是具有不同名称和输入参数但返回类型相同的处理程序。当调用方搜索特定的索引时,它应该在表中查找该特定键,并且它应该获取返回的函数,调用方可以相应地调用该函数。

我是打字稿新手,所以不确定如何编写相同的代码。任何帮助将不胜感激。

typescript hash
2个回答
0
投票
myhash [“ somestring”] =“值”; // set

let value = myhash [“ somestring”]; // gete


0
投票
interface IHash { [property: string]: Function } const t: IHash = {} t.name = function () { console.log("the name function invoked") } t.name()
© www.soinside.com 2019 - 2024. All rights reserved.