Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

React.js में Fetch API का उपयोग करके डेटाबेस में डेटा कैसे पोस्ट करें

आप नीचे जैसा कुछ कर सकते हैं

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));
  });
});



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. MySQL संग्रहीत फ़ंक्शन में गोटो लेबल का उपयोग कैसे करें

  2. कोड इग्निटर का उपयोग करके डेटाबेस में सक्रिय रिकॉर्ड कैसे हटाएं?

  3. Laravel - बहु-सम्मिलित पंक्तियां और आईडी पुनर्प्राप्त करें

  4. MyIsam इंजन लेनदेन समर्थन

  5. सम्मिलित करने के बाद mysql के लिए अंतिम सम्मिलित आईडी प्राप्त करना