我正在使用 airbnb typescript 样式指南,并且我定义了这样的类型:
export interface Question {
id: number;
type: 'text' | 'multipleOption' | 'checkBox';
question: string;
answer: string | Array<string>;
}
创建了一个适合此接口的变量,我需要在答案上执行 forEach 以检查某些条件,但我收到一个 linting 错误说
Property 'forEach' does not exist on type 'string | string[]'.
Property 'forEach' does not exist on type 'string'
我想执行一项检查,使我能够在不修改指南配置或更改接口问题定义中的类型的情况下执行此 foreach。
我努力了:
if (question.answer.constructor === Array) {
question.answer.forEach(...)
}
if (Array.isArray(question.answer)) {
question.answer.forEach(...)
}
if (typeof question.answer !== 'string') {
question.answer.forEach(...)
}
但是以上都没有消除衬里错误。