尝试使用该first()功能。它返回表格中的第一行(以表格排序的任何顺序)。该.select('images')会限制返回到刚才的列images。knex .select('images') .table('items') .first() .then((data) => { // first row of 'images' is an array. // return only the first item in array. res.send(data[0]);})