在要对拿到的数据进行处理的时候,基于数据可能放于对象中,或者处理数据但是不改变数据源,需要对数据进行复制克隆时,等号两边的数据类型可能存在不同,一下代码解决数据转换前后数据类型一致。
function clone<T>(data:T):T{
return ......(data)
}
export default clone
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!