将应用程序连接到本地主机上的 php 服务器
我如何将android应用程序(在我的手机上)连接到我在我的机器(localhost)上运行的php服务器(EasyPHP)。有没有任何教程记录了这一点。 我需要在实际手机而不是模拟器上测试应用程序(因为模拟器包含某些活动的错误)。任何帮助都会很棒!
how can i connect an android app (on my phone) to a php server (EasyPHP) that i am running on my machine (localhost). Are there any tutorials out there that document this.
I need to test the app on an actual phone not an emulator (because the emulator contains bugs for certain activities). Any help would be great!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的 Android 设备通过 WiFi 连接,那么您将处于同一网络中,然后您可以通过机器的 IP 地址访问 PHP 服务器。
If you connect on your Android with WiFi, you will be in the same network, then you can access PHP server via your machine's IP address.
是的,您连接到 php 脚本...
Android 允许您使用 GET 和 POST 方法发送数据..
我找到了一个关于此的有用教程: Android phpMysql 连接
Ys you connect to the php script...
Android allows you to sent data in GET and POST method..
I found a useful tutorials about this: Android phpMysql connection