在redux-form输入类型的文本字段中,第一次更改后失去焦点?

时间:2020-03-31 04:29:40

标签: redux-form

const renderInput = ({ input, label, meta }) => {
        return (
            <div className={`field ${meta.error && meta.touched ? 'error' : ''}`}>
                <label>{label}</label>
                <input type='text' {...input} autoComplete='off' />
            </div>
        );
    };
<Field name='title' component={renderInput} label='Enter Title ' />

输入内容后,文本字段将失去焦点。

1 个答案:

答案 0 :(得分:0)

added in **renderInput** function input attribute
<input
                    type='text'
                    {...input}
                    autoFocus={meta.active}
                    autoComplete='off'
                    placeholder={label}
                />
it is working...