如何确定字符串

时间:2015-09-26 22:32:41

标签: python sqlalchemy flask-sqlalchemy

写入sql-alchemy varchar字符串元素

时出现以下错误
....You must not use 8-bit bytestrings unless you use a text_factory that can interpret 8-bit bytestrings (like text_factory = str)....

如何在python中确定字符串的类型?

1 个答案:

答案 0 :(得分:1)

data.decode('utf-8')是指在Unicode HOWTO

中找到有关此内容的更多信息

在将代码发送到sql之前,请确保使用if (isset($objs[$key]){ $objs[$key] += val; } else { $objs[$key] = $val; } 对其进行解码。这应该会删除您遇到的错误。