0

我的网址太长,它给我带来了错误:

ConnectionError: HTTPConnectionPool(host='xxxx', port=8086): Max retries exceeded with url: /user/profile?nick=nick&name=xxx&city=xxx&gender=x&profile_image=%FF%D8%FF%E0%00%10JFIF%00%01%01%01%00%60%00%60%00%00%...

我正在将图像上传到文件 iput 并尝试通过 requests.post 传递它,但它抛出了上面的错误。

我的代码是这样的:

profile_image = self.request.get("f_profile_image")
    data = {"id": id_user,
                "nick": nick,
                "name": name,
                "last_name": last_name,
                "gender": gender,
                "profile_image": profile_image}

    d = requests.post("http://myhost:8086/user/profile",params=data)
    self.response.out.write(d.text)

我在这里得到了profile_image = self.request.get("f_profile_image")我从表单发送的图片,并尝试将其发送到我的服务器以存储在数据库中。但是d = requests.post("http://myhost:8086/user/profile",params=data)犯了我上面提到的错误

4

1 回答 1

0

嗨,伙计们,发生错误是因为它没有在我的模型中引入良好的数据类型,后来他们理解错误消息对我没有多大帮助,我相信错误在其他地方也有,感谢您的反馈。

于 2012-10-27T16:59:24.123 回答