Thinkphp restful 写法,可以使用curl 请求到对应的方法,但是android无法正确请求到指定的方法。
这里补充PHP代码
<?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';
}
}
?>
现在的问题是 android 只能请求到 test 方法,就算使用post提交也无法请求到test_post() ,但是看到的方式却是IS_POST.求解。 希望帮解答下,谢谢!
我在本地使用 curl url/test -x POST 是可以请求到 test_post() 方法的
zenye
10 years, 1 month ago