自学内容网 自学内容网

Argument of type ‘any‘ is not assignable to parameter of type ‘never‘.

Argument of type 'any' is not assignable to parameter of type 'never'.

前言

在ts中push数据发现报错显示我们的类型不一样
在这里插入图片描述

问题原因:

这是在咱们再声明变量names的时候没有给它设置变量的类型导致的

解决方案:

const names = [] as any[]

在这里插入图片描述


原文地址:https://blog.csdn.net/m0_50207524/article/details/143697346

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!