不能将类型“(string | undefined)[]”分配给类型“string[]”。 不能将类型“string | undefined”分配给类型“string”。
时间: 2023-09-18 07:15:47 浏览: 407
JavaScript判断undefined类型的正确方法
这个错误通常表示你有一个数组中包含了 `undefined` 值,但是在某些情况下你期望这个数组只包含字符串类型的值。你需要检查数组中的每一个元素是否为 `undefined` ,如果有的话,需要进行处理。
你可以使用 `Array.prototype.filter()` 方法过滤掉数组中的 `undefined` 值:
```typescript
const arr: (string | undefined)[] = ["hello", "world", undefined];
const filteredArr: string[] = arr.filter((item): item is string => typeof item === "string");
```
在上面的代码中,`.filter()` 方法返回一个新的数组,其中只包含了非 `undefined` 的字符串类型元素。注意这里使用了 `item is string` 语法,这个语法可以告诉 TypeScript 这个回调函数的返回值是一个 boolean 类型,并且如果返回值为 true,那么这个元素的类型应该是字符串类型。
阅读全文