为了账号安全,请及时绑定邮箱和手机立即绑定

如何以正确的方式捕获连接拒绝错误?

如何以正确的方式捕获连接拒绝错误?

料青山看我应如是 2021-12-21 16:43:57
在我的代码中,我提出了一些发布请求。如何在该调用中捕获连接拒绝错误?   try:        headers = {'content-type': 'application/x-www-form-urlencoded; charset=UTF-8'}        response = requests.request("POST", local_wallet_api + "v1/wallet/get_public_keys", headers=headers)        res = json.loads(response.text)   except Exception as e:        if e.errno == errno.ECONNREFUSED:            print("connection refused")            sys.exit(141)我已经尝试了上面的代码,但它不起作用,因为它说e没有errno参数。有没有正确的方法来处理这种错误?
查看完整描述

3 回答

?
慕森王

TA贡献1777条经验 获得超3个赞

from requests.exceptions import ConnectionError



   try:

        headers = {'content-type': 'application/x-www-form-urlencoded; charset=UTF-8'}

        response = requests.request("POST", local_wallet_api + "v1/wallet/get_public_keys", headers=headers)

        res = json.loads(response.text)


   except ConnectionError:

        sys.exit(141)


查看完整回答
反对 回复 2021-12-21
?
芜湖不芜

TA贡献1796条经验 获得超7个赞

您可以将其requests.exceptions.RequestException用作例外。

例子:

except requests.exceptions.RequestException as e:
    # exception here

有关请求例外的列表,请查看 requests.exception 文档。你可以参考这个链接


查看完整回答
反对 回复 2021-12-21
?
冉冉说

TA贡献1877条经验 获得超1个赞

看看这个

你可以得到 errno e.args[0].reason.errno

也使用这个,除了:

except requests.exceptions.ConnectionError as e:


查看完整回答
反对 回复 2021-12-21
  • 3 回答
  • 0 关注
  • 206 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信