gpt4 book ai didi

javascript - 流类型推断不起作用

转载 作者:行者123 更新时间:2023-12-03 03:06:47 25 4
gpt4 key购买 nike

我有以下代码:

export const notesService = {

getChannelOptions(): ChannelOption[] {
return [...channelOptions];
},

getChannelLabelFromValue(value: string): string {
let x =this.getChannelOptions();
x = x + 3;
const label = channelOptions.filter(co => co.value === value);
return label[0] ? label[0].label : "";
}

}

问题是当我尝试将 3 添加到数组时,流程会抛出错误,我必须做什么。

顺便说一句:如果我在 noteService 之外声明 getChannelOptions 作为函数,它就可以工作。

最佳答案

我已经通过显式声明解决了这个问题,但可能有更好的方法

let x = notesService.getChannelOptions();

关于javascript - 流类型推断不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47133567/

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