我试试其余的api。当我使用GET
方法时,代码运行。但是,当我使用POST
方法时,代码会返回false
。
这是我的 restclient控制器:
$this->load->spark('restclient/2.1.0');
$this->load->library('rest');
$this->rest->initialize(array('server' => 'serverhere'));
$name=$this->input->post('name');
$params = array('name' => $name);
$uri = 'userscontroller/user';
$result = $this->rest->post($uri, $params,"json");
$this->rest->debug();
这是我的 restserver控制器:
public function name_get(){
$name=$this->get("name");
$this->response($name);
}
public function name_post(){
$name=array('name'=>$this->input->post("name"));
$this->response($name);
}
name_post
响应始终为FALSE
。救命啊!