从React的功能组件中获取表单值有多种方法,具体取决于表单的类型和需求。
import React, { useState } from 'react';
function MyForm() {
const [inputValue, setInputValue] = useState('');
const handleInputChange = (event) => {
setInputValue(event.target.value);
};
const handleSubmit = (event) => {
event.preventDefault();
console.log('表单提交的值:', inputValue);
};
return (
<form onSubmit={handleSubmit}>
<input type="text" value={inputValue} onChange={handleInputChange} />
<button type="submit">提交</button>
</form>
);
}
import React, { useRef } from 'react';
function MyForm() {
const inputRef = useRef();
const handleSubmit = (event) => {
event.preventDefault();
console.log('表单提交的值:', inputRef.current.value);
};
return (
<form onSubmit={handleSubmit}>
<input type="text" ref={inputRef} />
<button type="submit">提交</button>
</form>
);
}
以上是两种常见的获取表单值的方法,根据具体的情况选择合适的方式。
领取专属 10元无门槛券
手把手带您无忧上云