作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建简单的 React js 应用程序,下面是我的代码片段(Notes.tsx 文件)
import React, { createRef, useRef } from 'react';
function NotesEditor(props: any) {
const txtNoteRef = useRef<HTMLInputElement>(null);
return (
<div className={"row"}>
<div className="col-md-6">
<div className="form-group">
<input type="text" ref={txtNoteRef} id="txtNote" className="form-control"></input>
</div>
</div>
<div className="col-md-6">
<input type="button" className="btn btn-primary" value="Save Note" onClick={handleSaveNote}></input>
</div>
</div>
);
function handleSaveNote(event: any) {
debugger
}
}
export default NotesEditor;
谁能解释一下为什么我在方法 handleSaveNote()
中尝试访问它时出现错误 Uncaught ReferenceError: txtNoteRef is not defined 或者我如何使用 useref
正确吗?下面是错误的屏幕截图。
最佳答案
我能够通过更改行 const txtNoteRef = useRef<HTMLInputElement>(null);
来解决此错误至 const txtNoteRef = useRef<any>();
它奏效了!!!
import React, { createRef, useRef } from 'react';
function NotesEditor(props: any) {
const txtNoteRef = useRef<any>();
return (
<div className={"row"}>
<div className="col-md-6">
<div className="form-group">
<input type="text" ref={txtNoteRef} id="txtNote" className="form-control"></input>
</div>
</div>
<div className="col-md-6">
<input type="button" className="btn btn-primary" value="Save Note" onClick={handleSaveNote}></input>
</div>
</div>
);
function handleSaveNote(event: any) {
debugger
}
}
export default NotesEditor;
关于javascript - Uncaught ReferenceError : txtNoteRef is not defined - useRef - reactJS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63010911/
我正在尝试创建简单的 React js 应用程序,下面是我的代码片段(Notes.tsx 文件) import React, { createRef, useRef } from 'react'; f
我是一名优秀的程序员,十分优秀!