"यदि कोई कर्मचारी अपना काम अच्छी तरह से करना चाहता है, तो उसे पहले अपने औजारों को तेज करना होगा।" - कन्फ्यूशियस, "द एनालेक्ट्स ऑफ कन्फ्यूशियस। लू लिंगगोंग"
मुखपृष्ठ > प्रोग्रामिंग > How to Handle MySQL Return Values Asynchronously in Node.js with Promises?

How to Handle MySQL Return Values Asynchronously in Node.js with Promises?

2024-11-08 को प्रकाशित
ब्राउज़ करें:218

How to Handle MySQL Return Values Asynchronously in Node.js with Promises?

Leveraging Promises to Process MySQL Return Values in Node.js

In transitioning from Python to Node.js, the asynchronous nature of Node.js can present challenges. Consider a scenario where you need to return a value from a MySQL function, such as getLastRecord(name).

Traditionally, Node.js uses callbacks for asynchronous operations. However, to handle the asynchronous nature of getLastRecord(), we'll leverage Promises.

To implement the function using a Promise:

function getLastRecord(name) {
  return new Promise((resolve, reject) => {
    // Setup MySQL connection and query
    // ...

    connection.query(query_str, query_var, (err, rows, fields) => {
      if (err) {
        return reject(err); // Handle error
      }
      resolve(rows); // Resolve with results
    }); // Callback function
  });
}

To handle the returned value, you can chain .then() and .catch() callbacks to the Promise:

getLastRecord('name_record')
  .then((rows) => {
    // Handle returned rows here
    console.log(rows);
  })
  .catch((err) => {
    // Handle errors here
    console.log(err);
  });

You can also implement the conditional check:

getLastRecord('name_record')
  .then((rows) => {
    if (rows.length > 20) {
      console.log('action');
    }
  });

By adopting Promises in this scenario, you introduce a more structured and readable approach to handling asynchronous operations, ensuring a cleaner and more maintainable codebase.

नवीनतम ट्यूटोरियल अधिक>

चीनी भाषा का अध्ययन करें

अस्वीकरण: उपलब्ध कराए गए सभी संसाधन आंशिक रूप से इंटरनेट से हैं। यदि आपके कॉपीराइट या अन्य अधिकारों और हितों का कोई उल्लंघन होता है, तो कृपया विस्तृत कारण बताएं और कॉपीराइट या अधिकारों और हितों का प्रमाण प्रदान करें और फिर इसे ईमेल पर भेजें: [email protected] हम इसे आपके लिए यथाशीघ्र संभालेंगे।

Copyright© 2022 湘ICP备2022001581号-3