Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将一些函数保存到一个数组中并使用相同的函数获取它们。需要一个函数或函数引用,而不是字符串作为数组的索引器。
myArray: SomeClass[] = []; myArray[func].func = func;
这可能吗 ?
这是不可能的。JavaScript 中的属性名称始终是字符串。您必须自己编写查找代码(例如使用并行数组)。