为了账号安全,请及时绑定邮箱和手机立即绑定

查询结果循环中的 nodejs 查询

查询结果循环中的 nodejs 查询

RISEBY 2022-08-04 09:50:33
我正在使用nodejs/mysql执行mysql查询。在第一个结果集之后,我将遍历结果集并查询第二个表。1)为什么“for”有效而“foreach”不起作用?实现所需内容的正确循环方式是什么?2) 项目 = { ...item, images: rows } 在 getImage 函数中也不起作用,为什么?3)如何让控制台.log显示修改后的结果?如果我使用“await”,控制台.log(行)应该显示修改后的结果,对吗?const getImages = async (item, key) => {    let sql = await connection.format('SELECT * from `images` WHERE id = ?', [item.id]);    const [ rows , fields ] = await connection.execute(sql);    item['images'] = rows    item = { ...item, images: rows } //'<-- this method doesn't work.    return item}let sql = await connection.format(`SELECT * from table ORDER BY a.listing_id LIMIT ?,?`, [0,10])    var [rows, fields] = await connection.execute(sql);    // rows.forEach(getImages)   //'<-- this does not work when uncommented    // rows = rows.forEach(getImages) //'<-- this also does not work when uncommented.    for (let i = 0; i < rows.length; i++) {    //'<-- but this works        rows[i] = await getImages(rows[i], i);    }    console.log(rows) //<----- this doesn't show modified results on terminal console    res.json(rows) //<----- browser can see the modified results on browser console
查看完整描述

2 回答

?
慕姐8265434

TA贡献1813条经验 获得超2个赞

您必须将每个项目的正确处理程序传递给 foreach 方法:


let new_rows = Array()

rows.forEach(row => {

    new_rows.push(await getImages(row, i))

});

另外,如果你想在另一个数组上获取图像,你应该使用map,它更干净:


let new_rows = rows.map(row => {

    return await getImages(row, i)

});


查看完整回答
反对 回复 2022-08-04
?
繁星coding

TA贡献1797条经验 获得超4个赞

因为 forEach 没有返回任何内容。所以最好使用 Array#map

//img1.sycdn.imooc.com//62eb261100018ac506490262.jpg

rows = rows.map(getImages)



查看完整回答
反对 回复 2022-08-04
  • 2 回答
  • 0 关注
  • 99 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信