尝试从表中获取数据并响应结果。由于数据来自数据库,因此面临问题。下面是代码,
cursor = connection.cursor()
cursor.execute("""select * from table""")
result = cursor.fetchall()
for row in result:
data = row
connection.close()
return Response(
data,
mimetype="text/csv",
headers={
"Content-disposition": "attachment; filename=data.csv"
},
)
在尝试获取时,出现此错误,
TypeError: Expected bytes
如有任何建议,我们将不胜感激。