在请求后以base64图像接收并解码为图像-Flask

时间:2019-09-23 19:11:01

标签: python flask base64

前端向我发送编码的(base64)图像,我必须对其进行解码。
最好的方法是什么?
如何以正确的方式从前端发送base64格式?
因为当我写img = request.args.get('image')时变量为空。

@app.route('/image', methods=['GET', 'POST'])
def image():
  if request.method == 'POST':
    img = request.args.get('image')
    encoded = base64.b64decode(img)
    return 'something'
  return '<h1>GET request</h1>'

0 个答案:

没有答案