使用Flask Pymysql来提供图像“GET”请求,Error显示需要一个类似字节的对象,而不是'dict'

时间:2018-06-12 08:57:36

标签: python flask flask-restful pymysql

def write_file(data, filename):
    with open(filename, 'wb') as f:
        f.write(data)

class DownloadPhoto(Resource):
def get(self,PhotoDefaultID):
    connection_DownloadPhoto = pymysql.connect(host='*******',
        user='root',
        password='*****',
        db='*******',
        charset='******',
        cursorclass=pymysql.cursors.DictCursor)
    try:
        with connection_DownloadPhoto.cursor() as cursor_DownloadPhoto:
            DownloadPhoto = "SELECT `PhotoData` FROM `app_phototable` WHERE `PhotoDefaultID` IN (%s)"
            cursor_DownloadPhoto.execute(DownloadPhoto, PhotoDefaultID)
            PhotoData = cursor_DownloadPhoto.fetchone()
            connection_DownloadPhoto.commit()
    finally:
        connection_DownloadPhoto.close()
    #write_file(data=PhotoData, filename="PhotoFile")
    write_file(PhotoData, "PhotoFile")
    return send_file(filename_or_fp= "PhotoFile", mimetype="image/jpeg"), 200

代码在这里,调试显示“TypeError:需要类似字节的对象,而不是'dict'// Werkzeug Debugger”

1 个答案:

答案 0 :(得分:1)

PhotoData实际上是dict类型。您应该将游标结果视为包含字段的行。即。

row = cursor_DownloadPhoto.fetchone()
PhotoData = row['PhotoData']

或粗略地说:

write_file(PhotoData['PhotoData'], "PhotoFile")