使用React.createRef创建引用而不在React中使用构造函数?

使用React.createRef创建引用而不在React中使用构造函数?,第1张

使用React.createRef创建引用而不在React中使用构造函数?

您可以像一样将其声明为类字段

state

class App extends React.Component {  state = { counter: 0 };  inputRef = React.createRef();}

Babel会将其转换为第二阶段预设中的以下代码。

constructor(props) {    super(props);    this.state = { counter: 0 };    this.inputRef = React.createRef();  }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4927760.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存