POST方法Restful API codeigniter无法正常工作

时间:2014-03-20 05:09:22

标签: php codeigniter rest codeigniter-2

我试试其余的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。救命啊!

0 个答案:

没有答案