我的网址太长,它给我带来了错误:
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)犯了我上面提到的错误