在读取文件时,报错:
image_data = image_file.read()
print("image_data:", image_data)
# 调用七牛云图片,返回文件名
try:
file_name = storage(image_data)
print("file_name:", file_name)
except Exception as e:
current_app.logger.error(e)
return jsonify(errno=RET.THIRDERR, errmsg="上传图片失败")
这里主要是因为七牛云服务的SDK提供了两种方法,一种是上传字节流到七牛云,一种是上传文件到七牛云。
当选择函数put_file
方法上传七牛云时,路径file_path
中会有类似的空字符串,如\ 0
这样就会报如下错误:
stat() argument 1 must be encoded string without null bytes, not str
此时只需要在路径前加上file_path = r'xxxx\ 0'
即可。
参考:python TypeError: must be encoded string without NULL bytes, not str