如何使用React.js中的Fetch API将数据发布到数据库

时间:2019-01-22 03:50:23

标签: javascript mysql reactjs rest fetch-api

我最近学习了如何使用在MAMP服务器上运行的localhost mySQL数据库在快速服务器中设置简单的api。设置好之后,我学习了如何让React.js读取并显示数据。现在,我想做相反的事情,并发布我在React.js中创建的表单中的数据。我想继续使用提取API发布该数据。您可以在下面查看我的代码。

下面是我的api的快速服务器代码。

  app.get('/api/listitems', (req, res) => {   
    connection.connect();  
    connection.query('SELECT * from list_items', (err,results,fields) => {
      res.send(results)
    })
    connection.end();
  });

我已经设置了表单,并为表单创建了Submit和onchange函数。当我提交数据时,它只是处于警报状态。我想将这些数据发布到数据库中。 IBelow是React App.js代码。

import React, { Component } from 'react';
import './App.scss';

class App extends Component {
  constructor(props) {
    super(props);
    this.state = {
      items: [],
      formvalue: ''
    };
    this.handleChange = this.handleChange.bind(this);
    this.handleSubmit = this.handleSubmit.bind(this);
  }

  handleData = () => {
    fetch('http://localhost:5000/api/listitems')
    .then(response => response.json())
    .then(data => this.setState({ items: data }));
  }

  handleChange(event) {
    this.setState({formvalue: event.target.value});
  }

  handleSubmit(event) {
    alert('A list was submitted: ' + this.state.formvalue);
    event.preventDefault();
  }

  componentDidMount() {
    this.handleData();
  }

  render() {
    var formStyle = {
      marginTop: '20px'
    };
    return (
      <div className="App">
          <h1>Submit an Item</h1>
          <form onSubmit={this.handleSubmit} style={formStyle}>
            <label>
              List Item:
              <input type="text" value={this.state.formvalue} onChange={this.handleChange} />
            </label>
            <input type="submit" value="Submit" />
          </form>
          <h1>Grocery List</h1>
          {this.state.items.map(
            (item, i) => 
              <p key={i}>{item.List_Group}: {item.Content}</p>
            )}
        <div>
      </div>
    </div>
    );
  }
}

export default App;

1 个答案:

答案 0 :(得分:2)

您可以执行以下操作

 handleSubmit(event) {
     //alert('A list was submitted: ' + this.state.formvalue);
     event.preventDefault();
     fetch('your post url here', {
         method: 'POST',
         headers: {
           'Accept': 'application/json',
           'Content-Type': 'application/json'
         },
        body: JSON.stringify( {
    id : this.state.id,
    item:this.state.item,
    itemType: this.state.itemType
})
    }).then(res => res.json())
    .then(data => console.log(data))
    .catch(err => console.log(err);
}

我的工作岗位终点位于下面。

app.post('/api/listitems', (req, res) => {
  var postData  = req.body;
  connection.query('INSERT INTO list_items SET ?', postData, (error, results, 
fields) => {
   if (error) throw error;
   res.end(JSON.stringify(results));
 });
});