作者热门文章
- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我是 React.js 的新手,刚才我正在学习 React 中 ref
的概念。他们在 V16.3 中有新的 createRef API。我试图从 REACT DOC's 中学习这个像这样 -
import React from "react";
export class MyComponent extends React.Component {
constructor(props) {
super(props);
// create a ref to store the textInput DOM element
this.textInput = React.createRef();
this.focusTextInput = this.focusTextInput.bind(this);
}
focusTextInput() {
// Explicitly focus the text input using the raw DOM API
// Note: we're accessing "current" to get the DOM node
this.textInput.current.focus();
}
render() {
// tell React that we want to associate the <input> ref
// with the `textInput` that we created in the constructor
return (
<div>
<input
type="text"
ref={this.textInput} />
<input
type="button"
value="Focus the text input"
onClick={this.focusTextInput}
/>
</div>
);
}
我遇到了这个错误-
类型错误:__WEBPACK_IMPORTED_MODULE_0_react___default.a.createRef 不是函数
最佳答案
你似乎没有安装正确版本的 react
这样做:
npm install --save react@16.4.0 react-dom@16.4.0
关于javascript - TypeError : __WEBPACK_IMPORTED_MODULE_0_react___default. a.createRef 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50639842/
我是一名优秀的程序员,十分优秀!