gpt4 book ai didi

reactjs - 按回车键后如何从 Material UI 文本字段中获取值?

转载 作者:行者123 更新时间:2023-12-05 01:59:57 26 4
gpt4 key购买 nike

无法使用此代码获取输入值。我尝试使用 onKeyUp、onKeyDownonKeyPress 但这些都不起作用,因为没有返回值。通常使用 onChange 属性获取值,但它会触发每个输入的新字符。

<TextField
style={{ margin: 8 }}
placeholder="Add a task"
fullWidth
margin="normal"
onKeyPress={(e) => {
if (e.key === "Enter") {
console.log("Enter key pressed");
// write your functionality here
}
}}
/>;

最佳答案

使用 e.target.value 你可以获得输入值。添加 e.preventDefault 以避免意外行为:

  const onKeyPress = (e) => {
if (e.key === "Enter") {
console.log('Input value', e.target.value);
e.preventDefault();
}
}

<TextField
...
onKeyPress={onKeyPress}/>

Working example

关于reactjs - 按回车键后如何从 Material UI 文本字段中获取值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67578008/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com