Postman Could not get any response 问题解决

Could not get any response出现的情况暂时遇到三种:

  1. Postman设置问题,也就是Could not get any response下面给出的提示,按照提示解决即可。Postman Could not get any response 问题解决_第1张图片
  2. 请求协议的问题,比如系统支持的事HTTP协议,但是请求的时候却用的是HTTPS协议:也就是https://localhost:12900/api/test/print   和   http://localhost:12900/api/test/print 的区别,只是http和https的区别,但是却可能导致后台无法接收到请求。
  3. 请求的地址如果不是IP地址,而是映射地址,在hosts文件中没有配置映射,也就无法找到请求,postman也就不会受到任何响应。这就需要在C:\Windows\System32\drivers\etc路径下的hosts文件中添加映射,如: 127.0.0.1        cloud-provider

 

下面给出第一种问题出现的详细解决步骤:

1、进入设置:

Postman Could not get any response 问题解决_第2张图片

2、更改相应的设置:

Postman Could not get any response 问题解决_第3张图片

你可能感兴趣的:(其他,Could,not,get,any,response)