Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我开始使用 Google App Engine 开发 Android 应用程序,我想知道,当我从客户端代码发送请求时,有没有办法调试 API 代码?如果没有,调试 API 代码最有效的方法是什么?
您只需在本地以调试模式启动 AppEngine 应用程序,然后启动指向 localhost 而不是已部署版本的 Android 应用程序(电话或模拟器,两者都可以),如下所示:
String serviceUrl = "http://10.0.2.2:8888/yourAppName";
你不能说localhost因为那是设备本身。完成此操作后,您可以在代码等上使用断点进行正常调试。
localhost
我不知道存在用于 appengine 的远程调试工具,但除非您尝试解决仅在部署后才出现的问题,否则没有理由这样做。