[react 3种方法] 获取ant组件ref用ts如何定义?

获取ant的轮播图组件, 我用ts如何定义?

Strongly Type useRef with ElementRef | Total TypeScript

javascript 复制代码
import React, {  ElementRef } from 'react';
javascript 复制代码
 const lunboRef = useRef<ElementRef<typeof Carousel>>(null);
javascript 复制代码
    <Carousel autoplay ref={lunboRef}>

这样就行了! ,然后点一下看看.弹出提示了

当然你还可以用ant内置的GetRef

Type Util - Ant Design

这个2个一样

javascript 复制代码
    const lunboRef = useRef<GetRef<typeof Carousel>>(null);
    // const lunboRef = useRef<ElementRef<typeof Carousel>>(null);

最后一种

ComponentRef

javascript 复制代码
import React, { useRef, ComponentRef } from 'react';
useRef<ComponentRef<typeof Carousel>>(null);
相关推荐
yanxy5127 小时前
【TS学习】(18)分发逆变推断
前端·学习·typescript
yanxy5121 天前
【TS学习】(15)分布式条件特性
前端·学习·typescript
sen_shan1 天前
Vue3+Vite+TypeScript+Element Plus开发-02.Element Plus安装与配置
前端·javascript·typescript·vue3·element·element plus
用户061760544431 天前
Ts进阶使用知识分享
typescript
Hamm2 天前
为了减少维护成本,我们把AirPower4T拆成了一个个NPM包
前端·vue.js·typescript
oil欧哟2 天前
😎 MCP 从开发到发布全流程介绍,看完不踩坑!
人工智能·typescript·node.js
无责任此方_修行中2 天前
关于 Node.js 原生支持 TypeScript 的总结
后端·typescript·node.js
bigyoung2 天前
ts在运行时校验数据类型的探索
前端·javascript·typescript
尽-欢3 天前
以太坊DApp开发脚手架:Scaffold-ETH 2 详细介绍与搭建教程
react.js·typescript·web3·区块链
季禮祥3 天前
都2025了,你确定你完全掌握Typescript了吗
前端·typescript