gpt4 book ai didi

node.js - typescript 错误: TS2339:Property 'map' does not exist on type 'string'

转载 作者:太空宇宙 更新时间:2023-11-04 00:05:55 24 4
gpt4 key购买 nike

Typescript 目前似乎没有 ECMAScript 2015(第 6 版,ECMA-262)中的新对象类型。这是我的代码:

const SkipAny: string = requestBody.SkipAny;
CurTester.SkipAny = SkipAny.map((value)=>{return new RegExp(value)});

我得到的错误是:

TS2339:Property 'map' does not exist on type 'string'

我想找到解决这个问题的方法,但我确实想使用 map 。无论如何,在 tslint 中是否可以忽略此规则?

最佳答案

事实证明错误是正确的,我应该使用数组:

const SkipAny: string [] = requestBody.SkipAny;
CurTester.SkipAny = SkipAny.map((value)=>{return new RegExp(value)});

关于node.js - typescript 错误: TS2339:Property 'map' does not exist on type 'string' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52337944/

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