这是我的第一个问题.
现在只显示二进制数据,显示许多奇怪的符号.我认为这是HTTP标题的问题.现在它在:
print "Content-Type: text/html"
我试过了:
print "Content-Type: image/jpeg"
我使用Python连接数据库并编写HTML.
编辑:代码:
def showFile():
# do sql to retrieve blob where filename
conn,cursor = getConnectionAndCursor()
sql = """
select data
from upload
where id=1
"""
cursor.execute(sql)
data = cursor.fetchone()
blob = data[0]
print "
最佳答案
原文链接:https://www.f2er.com/html/426805.html