我遇到了一些麻烦,我成功地将新数据插入到我的redis中 像这样...
cellForRowAtIndexPath:
但是当我想要获取我的数据时,我使用此代码
this.redisClient.hset("MySnapshot", myAccountId, JSON.stringify(Newsnapshot), (err: any, res: any) => {
if (err) return callback(err, null);
callback(null, res);
});
到目前为止我仍然得到空数据(错误和obj总是为空)... 但当我更换“myAccountId”时我从redis-cli得到的一些数据,就像' 123456789'代码成功显示数据。我的代码出了什么问题? 你能帮帮我吗?