如何在使用TypeScript将元素推入数组时提供类型定义?
P粉745412116
2023-07-24 21:47:12
<p>我需要避免在将元素推入数组时使用 'any' 作为类型定义。我尝试提供类型,但是出现了错误。以下是示例代码:</p>
<pre class="brush:php;toolbar:false;">interface answerProps {
state: string;
answer: string;
}
const results: Array<string> = [];
!isEmpty(answers) &&
answers.map((item: any) => results.push(`${item.state} : ${item.answer}`));</pre>
<p>根据上述代码,我想避免使用while循环来映射数组元素。</p>
在映射数组时,只需使用answerProps接口。