最近在Android开发中,发现无法访问localhost(127.0.0.1)。
Google之,得解:
Issue 133: localhost/127.0.0.1 not supported
原因分析:
Android模拟器把它自己作为了localhost!
换言之:使用localhost(127.0.0.1)访问的都是模拟器自己而非本地!
解决方案:
使用Android为本地机器定义的别名(alias):10.0.2.2 来替代localhost(127.0.0.1)即可。
Google之,得解:
Issue 133: localhost/127.0.0.1 not supported
原因分析:
Android模拟器把它自己作为了localhost!
换言之:使用localhost(127.0.0.1)访问的都是模拟器自己而非本地!
解决方案:
使用Android为本地机器定义的别名(alias):10.0.2.2 来替代localhost(127.0.0.1)即可。
在Android开发中遇到无法访问localhost的情况时,通过使用Android为本地机器定义的别名10.0.2.2来替代localhost,可以解决访问的是模拟器而非本地的问题。

被折叠的 条评论
为什么被折叠?



