长冬未歇 2023-02-24 09:57 采纳率: 46.2%
浏览 34

一个编辑按钮控制整个table的编辑状态

问题描述:需要用一个编辑按钮控制整个table的编辑状态

技术栈:react+antd

编辑前

img

编辑后

img

想问一下大家这种有什么好的实现办法 我不知道该怎么获取到所有行的值 行数是固定的

  • 写回答

1条回答 默认 最新

  • 耿鹏也能重名 2023-02-24 10:36
    关注
    
    
    
    ```jsx
    import { Table, Button } from 'antd';
    
    const dataSource = [
      {
        key: '1',
        name: '胡彦斌',
        age: 32,
        address: '西湖区湖底公园1号'
      },
      {
        key: '2',
        name: '胡彦祖',
        age: 42,
        address: '西湖区湖底公园1号'
      }
    ];
    
    const columns = [
      {
        title: '姓名',
        dataIndex: 'name',
        key: 'name'
      },
      {
        title: '年龄',
        dataIndex: 'age',
        key: 'age'
      },
      {
        title: '住址',
        dataIndex: 'address',
        key: 'address'
      },
      {
        title: '操作',
        dataIndex: '',
        key: 'x',
        render: () => <Button type="primary">编辑</Button>
      }
    ];
    
    class App extends React.Component {
      constructor(props) {
        super(props);
        this.state = {
          editable: false
        };
      }
      
      handleEdit = () => {
        this.setState({
          editable: true
        });
      };
    
      render() {
        return (
          <div>
            <Button type="primary" onClick={this.handleEdit}>编辑</Button>
            <Table
              dataSource={dataSource}
              columns={columns}
              pagination={false}
              bordered
              editable={this.state.editable}
            />
          </div>
        );
      }
    }
    
    export default App;
    

    ```
    不知道对你有没有用,我问的chatgpt

    评论

报告相同问题?

问题事件

  • 创建了问题 2月24日

悬赏问题

  • ¥15 vscode程序一直报同样的错,如何解决?
  • ¥15 关于使用unity中遇到的问题
  • ¥15 开放世界如何写线性关卡的用例(类似原神)
  • ¥15 关于并联谐振电磁感应加热
  • ¥60 请查询全国几个煤炭大省近十年的煤炭铁路及公路的货物周转量
  • ¥15 请帮我看看我这道c语言题到底漏了哪种情况吧!
  • ¥66 如何制作支付宝扫码跳转到发红包界面
  • ¥15 pnpm 下载element-plus
  • ¥15 解决编写PyDracula时遇到的问题
  • ¥15 有没有人能解决下这个问题吗,本人不会编程