React+Ant Design实现可编辑单元格、添加行并利用form获取新增数据

实现如下图所示需求:
React+Ant Design实现可编辑单元格、添加行并利用form获取新增数据_第1张图片
实现功能说明:
点击添加按钮,在表格中添加新的空白行(如下图所示),在点击提交的时候获取空白行的数据
React+Ant Design实现可编辑单元格、添加行并利用form获取新增数据_第2张图片
在构造函数内定义:

constructor(props) {
    super(props)
    this.state = {
        dataSource:[{
            key: 0,
            name1: '',
            name2: '',
            name3: '',
        }],//应用信息化查询方法
        count:1,//总数
    }
}

注:如果dataSource定义为空数组,则页面初始化时表格没有输入框,需要点击添加行,如下图
React+Ant Design实现可编辑单元格、添加行并利用form获取新增数据_第3张图片
在render()中定义:

const { form: { getFieldDecorator },dataSource } = this.props

在return中添加如下代码:

<div>
	<Form>
		<Form.Item>
            <Table 
                columns={[
                    { title: '名称1', dataIndex: 'name1',render: (text, record, index) => 
                        <Form.Item key={index}>
                            {getFieldDecorator(`tableDt[${index}].name1`)(
                                <Input placeholder="请输入名称1" /> 
                            )}
                        </Form.Item>
                    },
                    { title: '名称2', dataIndex: 'name2',render: (text, record, index) => 
                        <Form.Item key={index}>
                            {getFieldDecorator(`tableDt[${index}].name2`)(
                                <Input placeholder="请输入名称2" /> 
                            )}
                        </Form.Item>
                    },
                    { title: '名称3', dataIndex: 'name3',render: (text, record, index) => 
                        <Form.Item key={index}>
                            {getFieldDecorator(`tableDt[${index}].name3`)(
                                <Input placeholder="请输入名称3" /> 
                            )}
                        </Form.Item>
                    },
                ]}
                dataSource={this.state.dataSource}
                pagination={false}
            />
        </Form.Item>

    </Form>
    <Row gutter={16}>
        <Col span={24}>
            <Button onClick={ this.save } type="primary">提交</Button>
            <Button onClick={ this.toback }>返回</Button>
            <span className="tips">{this.state.saveTipCont}</span>
        </Col>
    </Row>
</div>

点击添加行按钮的操作方法:
//添加应用信息化查询方法行

handleRowAdd = () => {
    const { count, dataSource } = this.state;
    const newData = {
        key: count,
        name1: '',
        name2: '',
        name3: '',
    };
    this.setState({
        dataSource: [...dataSource, newData],
        count: count + 1,
    });
}

点击提交操作的方法:

//保存
save = () => {
    //处理校验值
    this.props.form.validateFields((err, values) => {
        // console.log(values)
        if(!err){
            // values.tableDt就是个表格数据的数组,可对获取的值进行处理校验处理
        }
    })
}

实现效果如下:
React+Ant Design实现可编辑单元格、添加行并利用form获取新增数据_第4张图片
value.tableDt值如下:
在这里插入图片描述

你可能感兴趣的:(react学习笔记,react,Ant-Design,编辑表格,form获取数据)