我无法在.then()Promise中返回一个对象

时间:2018-01-28 05:02:11

标签: javascript mysql node.js promise

我创建了一个id对象,但是我不能在我的for或者我的下一个.then()之外访问它。我将det作为全局变量,有人知道它在哪里错了吗?

.then(function(idHome){

    home_id = idHome;

    var detname_img = [];
    var sqlEdit = "INSERT INTO images_det SET ?";

    for(var k = 0; k < object.det_img.length; k++){

        detname_img.push({
            name_img : object.det_img[k].name_img,
        });

        connection.query(sqlEdit,detname_img[k]);
    }

    // console.log(detname_img);

    for(var i = 0; i < detname_img.length; i++){

        var getDet = ("SELECT det_id from images_det where name_img = '" + detname_img[i].name_img + " ' order by 1 desc limit 1");

        connection.query(getDet, function(erro, result){

            for(var k = 0; k < result.length; k++){

                det.push({
                    det_id : result[k].det_id
                });
                console.log(chalk.blue(det[0].det_id));
                return det;
            }
        });
    }        

});

1 个答案:

答案 0 :(得分:0)

假设您使用this节点mysql包,您可以从insert语句的result获取插入的id。

由于该软件包似乎并未意识到承诺的存在,因此您可以使用可以返回承诺的包装器来清除api:

//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)
)