Encoding problem in app engine when submitting multipart/form-data forms

后端 未结 6 1498
别跟我提以往
别跟我提以往 2020-12-06 01:19

I have a simple form that submits a image to the blobstore and a title for the image. This works on my local devserver but when I deploy my code, non ascii letters in the ti

6条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-06 02:10

    Add the newer webob library to your app.yaml :

    libraries:
    - name: webapp2
      version: "2.5.2"
    - name: webob
      version: "1.2.3"
    

    Got it from: https://code.google.com/p/googleappengine/issues/detail?id=2749

提交回复
热议问题