我正在使用llen并且在llen中我在node_redis中使用lindex。在lindex内部,响应未定义。
redisClient.llen("Device_Live", function (errorMessage, activeDevice) {
for (var i= 0; i< activeDevice; i++) {
redisClient.lindex("Device_Live", i, function (errorMessage, deviceList)
{
console.log(deviceList);
});
}
});
如何让它运行正确。