在flask / jinja2中编码二进制数据

时间:2014-09-30 11:01:50

标签: python unicode encoding flask jinja2

您好我正在使用flask,jinja2,sqlalchemy在python中开发小应用程序,... 我在我的数据库中保存binare数据:

file = request.files['file']
# store the recipe
recipe = Recipe(None, session['user_in'], request.form['title'], request.form['text'],request.form['tags'], file.read())
db.session.commit()

我希望在我的应用中显示该条目:

@app.route('/recipe/<id>', methods=['GET', 'POST'])
def show_entry(id):
  return render_template('show_entry.html', entry=db_session.query(Recipe).get(id))

在我的模板中我有:

<img src="data:image/png;base64,{{ entry.image }}"/>

但我有unicode错误

UnicodeDecodeError: 'ascii' codec can't decode byte 0x89 in position 0: ordinal not in range(128)

你能帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:4)

data:image/png;base64,说PNG数据是base64编码的,所以我认为你需要在渲染模板之前对图像数据进行base64编码。如果这样做,编码错误应该消失。这样的事情可以解决问题:

@app.route('/recipe/<id>', methods=['GET', 'POST'])
def show_entry(id):
  entry = db_session.query(Recipe).get(id)
  entry.image = entry.image.encode('base64')
  return render_template('show_entry.html', entry=entry)

我对此不太熟悉,它可能是一个字典查找?,即

entry['image'] = entry['image'].encode('base64')