当我使用 useChange 从小键盘设置值时挂钩调用无效

Invalid hook call when I'm setting values from numpad using useChange

这是我的组件:

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];
}

我遇到以下问题:

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

各种方法都试过了,好像不行。我从来没有使用过钩子,之前我 post 关于类似但不成功的事情。以前的 post 谈论 useState 在里面 pricePicker 函数在执行以前的代码行时既不是功能组件也不是反应挂钩组件:

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

我该如何解决这个问题?我需要修复它,但如何修复?我试了各种方法都没有成功。

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

这个错误其实很简单——钩子只能用在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>;
}