原因在于在python中从Redis取出的Sting都变成bytes格式
解决一
# 加上decode_responses=True即可解决
redis_store = redis.StrictRedis(host=‘127.0.0.1‘, port=6379, decode_responses=True)
解决二
取值时后面加上decode()
redis_store.get("name:%s"%name).decode()
python中redis获得到的值是带b'**'
原文地址:https://www.cnblogs.com/xing03/p/12546808.html
时间: 2024-11-09 03:38:05