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

मैं किसी वस्तु को वापस नहीं कर सकता .then() Promise

मान लें कि आप इस का इस्तेमाल करते हैं नोड mysql पैकेज से आप सम्मिलित आईडी प्राप्त कर सकते हैं परिणाम इन्सर्ट स्टेटमेंट का।

चूंकि उस पैकेज को वादों के अस्तित्व के बारे में पता नहीं लगता है, आप एपीआई को एक रैपर के साथ धूल कर सकते हैं जो एक वादा वापस कर देगा:

//turn an insert query with callback function 
//  into a function returning a promise
const insertAsPromise = connection => args => 
  new Promise(
    (resolve,reject)=>
      //call connection query with variable amount of argument(s)
      //  using Function.prototype.apply
      connection.query.apply(connection,args.concat(
        //add the callback to the list of arguments, callback
        //  is the last argument
        (error, results, fields) =>
          (error)
            ? reject(error)
            : resolve([results,fields])
      ))
  );


const sqlEdit = "INSERT INTO images_det SET ?";
Promise.all(
  object.det_img.map(
    image=>//map magical/global object.det_img to promise
      insertAsPromise(connection)([sqlEdit,image.name_img])
      .then(//when promise resolves get the inserted id
        ([results,fields])=>
          results.insertId
      )
  )
)
.then(
  results=>console.log(results)//should log an array of id's
)
.catch(
  err=>console.error("something went wrong:",err)
)



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. विदेशी कुंजी मौजूद होने पर 'विदेशी कुंजी बाधा विफल' क्यों होती है?

  2. PHP और MySQL पेजिनेशन अपडेट सहायता

  3. cfchart टैग का उपयोग करके एकल पाई चार्ट में एकाधिक प्रश्नों से डेटा प्रदर्शित करना

  4. php mysql ड्रॉप डाउन सूची के रूप में परिणाम प्रदर्शित करता है

  5. एमएस एक्सेस (वीबीए) में एडीओडीबी के माध्यम से MySQL संग्रहीत प्रक्रियाओं का आउटपुट पैरामीटर एक कंप्यूटर पर सही और दूसरे पर यादृच्छिक