I have a code in reactjs which sends datas entered in a form using axios. And it works fine. You have below a code with the same architecture as mine.
export default class FormPage extends Component {
     constructor(props) {
      super(props);
      this.state = initialState;
      this.handleSubmit = this.handleSubmit.bind(this);
      this.handleChange = this.handleChange.bind(this);
     }
     showMessage = (bool) => {
      setTimeout(() => {
       this.setState({
        showMessage: true
       });
      }, 2000);
     if (this.state.Showing) return;
      this.setState({ Show: true, Showing: true });
     setTimeout(() => {
      this.setState({ Show: false, Showing: false });
      }, 2000);
     }
     showMessageFalse = (bool) => {
      this.setState({
       showMessage: false
       });
      this.setState(initialState);
     }
     handleChange(event) {
      const InputValue = event.target.value;
      const stateField = event.target.name;
      this.setState({
        [stateField]: InputValue,
      });
      console.log(this.state);
     }
     async handleSubmit(event) {
      this.setState({ loading: true });
      setTimeout(() => {
       this.setState({ loading: false });
      }, 2000);
     event.preventDefault();
     const {
       name_contact='',
     } = this.state;
     await axios.post(
      ' MY_endpoint API',
      {
        name: `${name_contact}`);
      }
  render() {
    const { loading } = this.state;
    return (
      <div>
        <ExpansionPanel title="Contacts" expandedTitle="Contacts" titleIcon="done_all" ><div>
          <Container>
            <div id="normal"><label id='title2'>Detail du contact</label></div><br/>
              <Row align="center">
                <Col id= "color" sm={3}> <label> Name: </label></Col> <Col id= "color" sm={3}><Input placeholder="Nom complet" type="string" name="name_contact" value={this.state.name_contact} onChange={this.handleChange}/><br /> </Col>
              </Row>
          </Container>
          </div>
        </ExpansionPanel>
      <form onSubmit={this.handleSubmit}>
      <br /><br /><div id="deb"><Button type="submit" value="Show" onClick={this.showMessageFalse.bind(null, true)} > Update </Button></div>
      </form>
    </div>
    );
  }
}
But on my real code, I have a lot of datas to send because i have a lot of field. I would like to know if it was possible to send with this architecture, only the fields where a variable is in.
event.preventDefault();
 const {
   name_contact='',
 } = this.state;
 await axios.post(
  ' MY_endpoint API',
  {
    name: `${name_contact}`);
  }
i want for example, if my name_contact is not filled and I click on "Update", it does not send the name_contact field, but if it is filled, it sends it.
If it’s possible to do something like that, what am I supposed to use? Thanks
 
    