本文介绍了如何连接Android POST方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在PHP中有以下方法。



I have the following method in PHP.

if($_SERVER['HTTP_METHOD'] === 'login')
{

}
{





如何从我的Android应用程序中获取此方法,如何获得此POST方法的返回值?



How can i reach this method from my Android application and how can i get the return value of this POST method?

推荐答案





如何从我的Android应用程序中获取此方法以及如何获得返回值这个POST方法?



How can i reach this method from my Android application and how can i get the return value of this POST method?


这篇关于如何连接Android POST方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 12:40