gpt4 book ai didi

javascript - 当我使用 useChange 从数字键盘设置值时, Hook 调用无效

转载 作者:行者123 更新时间:2023-11-28 03:08:29 25 4
gpt4 key购买 nike

这是我的组件:

const pricePicker = ({
step,
precision,
input,
placeholder,
label,
theme,
props,
meta: { touched, error },
...rest
}) => {
/*In the FOLLOWING LINES from "function useChange(e)" to "return [value,change]"

is the error known as Invalid hook.
*/

function useChange(e){
const [value,setValue] = useState(0);

function change(event){
setValue(value => event.target.value);
}
return [value,change];
}

const handleBlur = (e) => {

if (e.target.value === '0') e.target.value = '0'

}


const handleKeypress = (e) => {
const characterCode = e.key
if (characterCode === 'Backspace') return

const characterNumber = Number(characterCode)
if (characterNumber < 0) {
e.preventDefault()
}
}

const myTheme = {
fontFamily: 'Arial',
textAlign: 'center',
header: {
primaryColor: '#263238',
secondaryColor: '#f9f9f9',
highlightColor: '#FFC107',
backgroundColor: '#607D8B',
},
body: {
primaryColor: '#263238',
secondaryColor: '#32a5f2',
highlightColor: '#FFC107',
backgroundColor: '#f9f9f9',
},
panel: {
backgroundColor: '#CFD8DC'
}
};


return(
<div className='form-group'>

<label forname={input.name}>{label}</label> <br />
<NumPad.Number
{...rest}
step={0.1}
precision={2}
placeholder={!input.value ? 'Please, type a number' : input.value}
selected={input.value ? new NumPad.Number(input.value) : null}
onKeyDown={(changedVal) => handleKeypress(changedVal)}
onBlur={(changedVal) => handleBlur(changedVal)}
onChange={(changedVal) => useChange(changedVal)}


className='form-control'


/>
<div className='text-danger' style={{ marginBottom: '20px' }}>
{touched && error}
</div>
</div>
);
};

export default pricePicker;

当我执行这段代码时:

function useChange(e){
const [value,setValue] = useState(0);
function change(event){
setValue(value => event.target.value);
}
return [value,change];
}

我遇到以下问题:

无效的 Hook 调用。钩子(Hook)只能在函数组件的主体内部调用。发生这种情况可能是由于以下原因之一:1.您的React和渲染器版本可能不匹配(例如React DOM)2. 你可能违反了 Hooks 规则3.您可能在同一个应用程序中拥有多个React副本

我已经尝试了各种方法,但似乎不可能。我从未使用过钩子(Hook),之前我曾发布过类似的内容,但没有成功。上一篇文章讨论了 useState 在 pricePicker 函数内部,当执行之前的代码行时,它既不是功能组件也不是 react 钩子(Hook)组件:

const handleChange = (e) =>{
// in the following line is the error.
const[value, setValue] = useState(0);
}

如何解决这个问题?我需要修复它,但是怎么修复呢?我已经尝试了所有方法但没有成功。

有人知道如何解决这个问题吗?这很重要。

最佳答案

错误实际上很简单 - 钩子(Hook)只能在top level of functional components处使用。在您的具体示例中,您不能在函数 useChange 内部使用 useState

相反,请执行以下操作:

const pricePicker = ({/*props go here*/
const [value,setValue] = useState(0);
// handler of input change
const onChange = e => setValue(e.target.value);

// the rest of the code can stay the same

return <div className='form-group'>
<label forname={input.name}>{label}</label> <br />
<NumPad.Number
{...rest}
step={0.1}
precision={2}
placeholder={!input.value ? 'Please, type a number' : input.value}
selected={input.value ? new NumPad.Number(input.value) : null}
onKeyDown={(changedVal) => handleKeypress(changedVal)}
onBlur={(changedVal) => handleBlur(changedVal)}
onChange={onChange} /* Here's we use the onChange handler */
className='form-control'
/>
<div className='text-danger' style={{ marginBottom: '20px' }}>
{touched && error}
</div>
</div>;
}

关于javascript - 当我使用 useChange 从数字键盘设置值时, Hook 调用无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60374055/

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