Home >Backend Development >PHP Tutorial >Thinkphp restful 写法,可以使用curl 请求到对应的方法,但是android无法正确请求到指定的方法。

Thinkphp restful 写法,可以使用curl 请求到对应的方法,但是android无法正确请求到指定的方法。

WBOY
WBOYOriginal
2016-06-06 20:42:531039browse

这里补充PHP代码

<code><?php namespace App\Controller;
use Think\Controller\RestController;

class HomeController extends RestController{

    public function test_get(){
        echo 'get';
    }

    public function test_post(){
        echo 'post';
    }

    public function test(){
        if(IS_POST){
            echo 'post_';
        }elseif(IS_GET){
            echo 'get_';
        }
        echo 'default';
    }
}
?>
</code>

现在的问题是 android 只能请求到 test 方法,就算使用post提交也无法请求到test_post() ,但是看到的方式却是IS_POST.求解。 希望帮解答下,谢谢!
我在本地使用 curl url/test -x POST 是可以请求到 test_post() 方法的

回复内容:

这里补充PHP代码

<code><?php namespace App\Controller;
use Think\Controller\RestController;

class HomeController extends RestController{

    public function test_get(){
        echo 'get';
    }

    public function test_post(){
        echo 'post';
    }

    public function test(){
        if(IS_POST){
            echo 'post_';
        }elseif(IS_GET){
            echo 'get_';
        }
        echo 'default';
    }
}
?>
</code>

现在的问题是 android 只能请求到 test 方法,就算使用post提交也无法请求到test_post() ,但是看到的方式却是IS_POST.求解。 希望帮解答下,谢谢!
我在本地使用 curl url/test -x POST 是可以请求到 test_post() 方法的

安卓上装个ProxyDroid 代理到电脑的http嗅探程序(fiddler charles这种)上 然后检查请求的参数

你试试改为 test_post_json(),然后客户端传个header指明 Accept:application/json,看看是不是请求类型的问题。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn