上传图片保存到文件夹后不能显示的问题解决
-
研究product_image模块上传图片保存到文件夹的方法时,发现上传后图片无法显示,oe读出来也无法显示,经 重庆-mrshelly 指点,是该程序一bug:
def _save_file(self, path, b64_file):
"""Save a file encoded in base 64"""
self._check_filestore(path)
with open(path, 'w') as ofile:
ofile.write(base64.b64decode(b64_file))
return True
这里应该使用二进制写模式来保存,即 open(path, 'wb') .
感谢总监!
;D