gpt4 book ai didi

javascript - 如何更改 Lodash 函数在 Typescript 中的使用方式?

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

我有这个代码:

    _.remove(this.home.modal.data.roles, function (currentObject) {
return currentObject.name === roleToDelete;
});

有人可以告诉我如何将函数调用更改为通常使用 Typescript 完成的方式吗?它还给了我一个错误:

    Message 118 TsLint: expected callSignature to have a typedef.

如有任何建议,我们将不胜感激。

最佳答案

这就是您要找的吗:

_.remove(this.home.modal.data.roles, (currentObject) => {
return currentObject.name === roleToDelete;
});

您还可以像这样输入“currentObject”:

_.remove(this.home.modal.data.roles, (currentObject: Role) => {
return currentObject.name === roleToDelete;
});

关于javascript - 如何更改 Lodash 函数在 Typescript 中的使用方式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25464803/

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