1

问题是由于某种原因,递增和递减按钮不影响输入中的最终值,但是当您直接在输入中输入值时,值会发生变化。

import { Box, Button, FormControl, FormErrorMessage, FormLabel, HStack, Input, useNumberInput } from '@chakra-ui/react';
import { Field, useField } from 'formik';
import React from 'react';

interface TextInputProps{
    name: string;
    label: string;
}

const CountInput: React.FC<TextInputProps> = ({ name, label}) => {
    const [field, { error, touched }] = useField(name);
    const {
        getInputProps,
        getIncrementButtonProps,
        getDecrementButtonProps,
    } = useNumberInput({
        step: 1,
        defaultValue: 1,
        min: 1,
        max: 10,
        precision: 0,
    })

    const inc = getIncrementButtonProps();
    const dec = getDecrementButtonProps();
    const input = getInputProps({ ...field });


    return (
        <Field name={name}>
            {({ form }: any) => {
                return (
                    <FormControl isInvalid={form.errors[name] && form.touched[name]}>
                        <FormLabel htmlFor={name}>{label}</FormLabel>
                        {description && <Box mb={5}>{description}</Box>}
                        <HStack maxW="320px">
                            <Button {...dec}>-</Button>
                            <Input id={name} onChange={(val) => form.setFieldValue(field.name, val)} {...input} />
                            <Button {...inc}>+</Button>
                        </HStack>
                        <FormErrorMessage>{form.errors[name]}</FormErrorMessage>
                    </FormControl>
                );
            }}
        </Field>
    );
}

export default CountInput;

我猜问题在于将属性 spread 传递...fieldgetInputProps(),这反过来又重置了值。

4

2 回答 2

3

传给onChangeuseNumberInput传播...field如下:

const [field, meta, helpers] = useField(name);
const { getInputProps, getIncrementButtonProps, getDecrementButtonProps } =
useNumberInput({
  ...field,
  onChange: (valueAsString, valueAsNumber) => helpers.setValue(valueAsNumber),
});

因为期望的onChange参数useNumberInput

(method) UseCounterProps.onChange?(valueAsString: string, valueAsNumber: number): void

而from有不同的签名onChangefielduseField

于 2021-06-22T14:41:26.873 回答
0

字段的内容是什么?

我也尝试在 Chakra 中使用 useNumberInput 钩子,获取输入道具只接受一些值,它们在这里

export declare function useNumberInput(props?: UseNumberInputProps): {
    value: React.ReactText;
    valueAsNumber: number;
    isFocused: boolean;
    isDisabled: boolean | undefined;
    isReadOnly: boolean | undefined;
    getIncrementButtonProps: PropGetter<any, {}>;
    getDecrementButtonProps: PropGetter<any, {}>;
    getInputProps: PropGetter<any, {}>;
    htmlProps: {
        defaultValue?: string | number | undefined;
        value?: string | number | undefined;
    };
};
于 2021-06-19T12:41:24.043 回答