ReactJS表单handleChange

Posted biubiu小希希

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ReactJS表单handleChange相关的知识,希望对你有一定的参考价值。

    handleInputChange = (event) => {
        const target = event.target;
        const type = target.type;
        const value = String.prototype.trim.call(target.value);
        const name = target.name;
        if (type === ‘checkbox‘) {
            if (this.state.formData[name] === undefined) { // 创建
                this.setState(() => ({
                    formData: Object.assign(this.state.formData, {
                        [name]: [value],
                    }),
                }));
            } else {
                const valueIndex = this.state.formData[name].indexOf(value);
                if (valueIndex < 0) { // 查找是否已经被勾选
                    this.setState((prevState) => ({
                        formData: Object.defineProperty(this.state.formData, [name], {
                            value: prevState.formData[name].concat([value]),
                        }),
                    }));
                } else {
                    const arr = this.state.formData[name];
                    arr.splice(valueIndex, 1); // 去掉已经选择的
                    this.setState(() => ({
                        formData: Object.defineProperty(this.state.formData, [name], {
                            value: arr,
                        }),
                    }));
                }
            }
        } else {
            this.setState(() => ({
                formData: Object.assign(this.state.formData, {
                    [name]: value,
                }),
            }));
        }
    }

 

以上是关于ReactJS表单handleChange的主要内容,如果未能解决你的问题,请参考以下文章

尝试使用 Typescript 在简单的 React 表单组件中使用 handleChange。难以访问 e.target.value

React之表单

react表单提交

如何在 ReactJS 中处理多选表单

如何在 redux 中管理这个表单?

在 reactjs 中使用表单并获取请求时出现问题