有多个按钮时点击单个按钮显示加载中

Posted 进阶的哈姆雷特

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了有多个按钮时点击单个按钮显示加载中相关的知识,希望对你有一定的参考价值。

const {  Button  } = antd;
const {  PoweroffOutlined  } = icons;

class App extends React.Component {
  state = {
    loadings: [],
  };

  enterLoading = index => {
    this.setState(({ loadings }) => {
      const newLoadings = [...loadings];
      newLoadings[index] = true;

      return {
        loadings: newLoadings,
      };
    });
    setTimeout(() => {
      this.setState(({ loadings }) => {
        const newLoadings = [...loadings];
        newLoadings[index] = false;

        return {
          loadings: newLoadings,
        };
      });
    }, 6000);
  };

  render() {
    const { loadings } = this.state;
    return (
      <>
        <Button type="primary" loading={loadings[0]} onClick={() => this.enterLoading(0)}>
          Click me!
        </Button>
        <Button
          type="primary"
          icon={<PoweroffOutlined />}
          loading={loadings[1]}
          onClick={() => this.enterLoading(1)}
        >
          Click me!
        </Button>
        <Button
          type="primary"
          icon={<PoweroffOutlined />}
          loading={loadings[2]}
          onClick={() => this.enterLoading(2)}
        />
      </>
    );
  }
}

ReactDOM.render(<App />, mountNode);

https://ant.design/components/button-cn/

以上是关于有多个按钮时点击单个按钮显示加载中的主要内容,如果未能解决你的问题,请参考以下文章

如何在 FAB 按钮单击时将数据从多个片段发送到单个活动

在 Android 中使用具有多个布局的单个片段

按下后退按钮时强制重新加载/刷新

片段存储和重用:使用TabView的多个子片段

从单个按钮从多个片段中提取数据

如何在按下单个片段的手动后退按钮时返回上一个片段?