在React / Bootstrap 4中,禁用按钮以防止重复提交表单的正确方法是什么?

问题描述

我正在使用React 16.13和Bootstrap4。我有以下表单容器...

const FormContainer = (props) => {
    ...
  const handleFormSubmit = (e) => {
    e.preventDefault();
    CoopService.save(coop,setErrors,function(data) {
      const result = data;
      history.push({
        pathname: "/" + result.id + "/people",state: { coop: result,message: "Success" },});
      window.scrollTo(0,0);
    });
  };

  return (
    <div>
      <form className="container-fluid" onSubmit={handleFormSubmit}>
        <FormGroup controlId="formBasicText">
    ...
          {/* Web site of the cooperative */}
          <Button
            action={handleFormSubmit}
            type={"primary"}
            title={"Submit"}
            style={buttonStyle}
          />{" "}
          {/*Submit */}
        </FormGroup>
      </form>
    </div>
  );

是否有禁用提交按钮的标准方法,以防止重复提交表单?要注意的是,如果从服务器返回的表单中存在错误,我希望再次启用该按钮。下面是我上面引用的“ CoopService.save” ...

...
  save(coop,callback) {
    // Make a copy of the object in order to remove unneeded properties
    coop.addresses[0].raw = coop.addresses[0].formatted;
    const NC = JSON.parse(JSON.stringify(coop));
    delete NC.addresses[0].country;
    const body = JSON.stringify(NC);
    const url = coop.id
      ? REACT_APP_PROXY + "/coops/" + coop.id + "/"
      : REACT_APP_PROXY + "/coops/";
    const method = coop.id ? "PUT" : "POST";
    fetch(url,{
      method: method,body: body,headers: {
        Accept: "application/json","Content-Type": "application/json",},})
      .then((response) => {
        if (response.ok) {
          return response.json();
        } else {
          throw response;
        }
      })
      .then((data) => {
        callback(data);
      })
      .catch((err) => {
        console.log("errors ...");
        err.text().then((errorMessage) => {
          console.log(JSON.parse(errorMessage));
          setErrors(JSON.parse(errorMessage));
        });
      });
  }

不确定是否相关,但这是我的Button组件。愿意对其进行更改或进行其他更改,以帮助实现一种标准的,即用型的解决方案。

import React from "react";
  
const Button = (props) => {
  return (
    <button
      style={props.style}
      className={
        props.type === "primary" ? "btn btn-primary" : "btn btn-secondary"
      }
      onClick={props.action}
    >
      {props.title}
    </button>
  );
};

export default Button;

解决方法

Greg已经提到this link,向您展示如何使用组件状态存储按钮是否被禁用。

但是,最新版本的React使用带有钩子的功能组件,而不是this.statethis.setState(...)。这是您可能要采取的方法:

import { useState } from 'react';

const FormContainer = (props) => {
  ...
  const [buttonDisabled,setButtonDisabled] = useState(false);
  ...
  const handleFormSubmit = (e) => {
    setButtonDisabled(true); // <-- disable the button here
    e.preventDefault();
    CoopService.save(coop,(errors) => {setButtonDisabled(false); setErrors(errors);},function(data) {
      const result = data;
      history.push({
        pathname: "/" + result.id + "/people",state: { coop: result,message: "Success" },});
      window.scrollTo(0,0);
    });
  };

  return (
    ...
          <Button
            action={handleFormSubmit}
            disabled={buttonDisabled} // <-- pass in the boolean
            type={"primary"}
            title={"Submit"}
            style={buttonStyle}
          />
       ...
  );
const Button = (props) => {
  return (
    <button
      disabled={props.disabled} // <-- make sure to add it to your Button component
      style={props.style}
      className={
        props.type === "primary" ? "btn btn-primary" : "btn btn-secondary"
      }
      onClick={props.action}
    >
      {props.title}
    </button>
  );
};

我写了一些凌乱的内联代码来替换您的setErrors函数,但是您可能想将setButtonDisabled(false);添加到setErrors函数中,而无论您最初定义它的位置是什么,而不是调用它来自像我一样的匿名函数;所以请记住这一点。

有关useState挂钩的更多信息,请参见here。让我知道这是否回答了您的问题。

,

正如其他人所说,禁用按钮是一个完美的解决方案。但是我不喜欢在提交时更改按钮的外观。

您应该设置按钮的CSS属性pointer-events: none,该属性将关闭所有事件的发出。提交完成或失败后,您可以删除该属性。