本教程操作环境:Windows10系统、react18.0.0版、Dell G3电脑。
react 表格怎么增加?
React+antd动态增加Table可编辑行
(资料图片)
根据antd官网的可编辑表格例子来实现,新增的可编辑的单元格为一个子组件,由Table引入。对于原理理解有限,欢迎探讨。
以项目中的活动日程组件的新增日程信息为例
由于之前编辑文章的时候经验不足,易读性太低了,重新编辑一下
实现过程
首先,在一个Table.jsx文件中创建了两个class组件(这里使用hook写法直接用const也可),一个子组件EditableCell,父组件Schedule,子组件主要是来设置可编辑的form元素的。
1、在两个组件外面先定义变量,功能实现使用的是React.createContext()方法。
const EditableContext = React.createContext();
2、先上可编辑单元格子组件代码
//子组件class EditableCell extends React.Component { getInput = () => { const { inputType } = this.props; let i = 1 if (inputType === "rq") { //可根据不同的inputType来显示不同Form元素,inputType来源于父组件 return ; }else { return } }; renderCell = ({ getFieldDecorator }) => { const { editing, dataIndex, title, record, children, ...restProps } = this.props; // console.log(record) return ( {editing ? ( //editing使用父组件传过来的值,判断是否为编辑状态 {getFieldDecorator(dataIndex, { rules: [{ required: dataIndex === "bz" || dataIndex === "id" ? false : true, message: `请输入!`, }, ], // initialValue: dataIndex && record[dataIndex] , initialValue: dataIndex && dataIndex === "rq" ? (record[dataIndex] ? moment(record[dataIndex]) : null) : record[dataIndex] })(this.getInput())} ) : ( children )} ); }; render() { return {this.renderCell} ; }}
登录后复制
3、父组件Schedule部分的代码
class Schedule extends Component {state = { data: [], editingKey: "", dataSource: {}, }//Table渲染的columns,这里只写出三列举例子,在render方法内会重组该数组columns = [ { className: "columnHead", title: "序号", dataIndex: "id", key: "id", width: 60, align: "center", render: (text, row, index) => {index + 1} }, { className: "columnHead", title: "日期", dataIndex: "rq", key: "rq", align: "center", width:100, editable: true,//editable: true是必须加的,哪一列需要编辑就加在哪列 }, { className: "columnHead", title: "从何地至何地", dataIndex: "hdzhd", key: "hdzhd", align: "center", width:120, editable: true, }, { //该列为操作列,包含编辑、删除、取消、保存按钮,下面代码中的每个方法都在此处定义className: "columnHead",title: "操作",align: "center",render: (text, record) => {const { editingKey } = this.state;const editable = this.isEditing(record);return editable ? ( this.cancel(record.id)}> //添加了二次确实提醒取消 //保存按钮要用EditableContext包起来{(form) => ( this.save(form, record.id, record)} style={{ marginRight: 8 }} >保存 )} ) : ( this.edit(record.id)}>编辑 this.delete(record.id)}> 删除 );}}]render(){const components = { //在此处引入可编辑的单元格子组件body: {cell: EditableCell,},};//重新处理了一下Table的columnsconst columns = this.columns.map((col) => {if (!col.editable) {return col;}return {...col,//此处的数据会传给子组件onCell: (record) => ({record,inputType: col.dataIndex,dataIndex: col.dataIndex,title: col.title,editing: this.isEditing(record),}),};});return( record.id} dataSource={data} columns={columns} scroll={{ x: "calc(620px + 10%)", y: WinHeight - 580 }} pagination={false} footer={() => }/>)}}登录后复制以上的代码就是页面内最开始简单展示的代码了
4、开始默认数据为空,点击新增按钮会增加一行可编辑行
图1
5、点击新增的事件方法代码
handleAdd = () => { //该方法在Table标签内的footer内定义const { data, editingKey } = this.state;let newData = data;const id = new Date().toString();if (newData.length === 0) {newData.push({id,rq: "",hdzhd: "",gzdd: "",nfwdwfdw: "",gznr: "",bz: ""})} else {if (editingKey !== "") { //如果上一条还处于编辑状态,不可新增message.error("请先保存");return;}const row = {id,rq: "",hdzhd: "",gzdd: "",nfwdwfdw: "",gznr: "",bz: ""};newData.splice(data.length, 1, row);}this.setState({ data: newData, editingKey: id });};
登录后复制
点击新增后的效果 图2
此时操作列的两个操作为“取消”、“保存”
图2中展示的可编辑的一整行单元格为开头提到的单元格子组件
如果必填项没有输入内容,点击保存会触发Form表单必填项的提示信息。 图3
如果上一条的信息没有编辑完,再次点击新增时,会提示要求先保存上一条
保存操作的代码
save(form, key, record) {const { wsCgtzPjxx, data } = this.state;form.validateFields((error, row) => {if (error) {return;}const { data } = this.state;const newData = [...data];row.rq = moment(row.rq).format("YYYY-MM-DD") //如果有日期选择框,要用format转一下let dataobj = { //接口请求参数,只写了几个rq: row.rq,hdzhd: row.hdzhd,gzdd: row.gzdd,}const index = newData.findIndex((item) => key === item.id);if (index > -1) {const item = newData[index];newData.splice(index, 1, {...item,...row,});http.post("单条数据保存接口调用").then(res => {if (res.code === 200) {this.initData();//保存后重新获取了一下表格数据}})this.setState({ data: newData, editingKey: "" });} else {newData.push(row);http.post(调用接口, dataobj).then(res => {if (res.code === 200) {this.initData()}})this.setState({ data: newData, editingKey: "" });}});}
登录后复制
图3状态下的取消事件代码
cancel = (key) => {if (this.state.isedit) {this.setState({ editingKey: "" });} else {if (key.length > 6) {const { data } = this.state;const newData = data;newData.splice(data.length - 1, 1);this.setState({ data: newData, editingKey: key });}this.setState({ editingKey: "" });}};
登录后复制
数据保存之后Table表格展示为图4 图4 此时操作列的两个操作为“编辑”、“删除”
编辑操作的代码
edit = (key) => {this.setState({ editingKey: key, isedit: true });//让单元格变为编辑状态};
登录后复制
删除操作的代码
delete = (key) => {const { data } = this.state;const newData = data;const index = newData.findIndex((item) => key === item.id);http.get("调用删除接口", { id: key }).then(res => {this.initData()})newData.splice(index, 1);this.setState({ data: newData, editingKey: "" });};
登录后复制
有不足,待补充。
根据antd官网的可编辑表格例子来实现,新增的可编辑的单元格为一个子组件,由Table引入。对于原理理解有限,欢迎探讨。
推荐学习:《react视频教程》
以上就是react 表格怎么增加的详细内容,更多请关注php中文网其它相关文章!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
新闻热点
奇闻趣事