.map
ここで便利です:
loadActiveChannels: function() {
return Knex('game_channels as ch')
.where('ch.channel_state', '>', 0)
.map(function(channel) {
return redis.hmsetAsync("channel:"+channel.channel_id, _.omit(channel, 'channel_id'))
}).then(function(res) {
console.log(res);
})
}
元のコードで出力が得られない理由は、promises.push[promise];
があるためです。 これはpromises.push(promise)
である必要があります