client.get('str_key_0', function(error, res){
if(error) {
console.log(error);
}
});
client.get('str_key_1', function(error, res){
if(error) {
console.log(error);
}
});
我如何合将2个res合并到一起呢?
用
Q
这个组件挺好的