API REST没有工作路线

时间:2015-12-16 15:58:25

标签: codeigniter api routes codeigniter-restserver

我使用codeigniter进行api休息,使用提供官方网站的库。

问题是:文件routes.php没有很好地重定向。当我将 localhost / API / 1 放入浏览器时出现404错误。

这是我的控制器" Apicontroller":

public function __construct() { //constructor //no tocar
    parent::__construct();
    $this -> load -> model("Modelocontrolador");
}

public function index_get() { //get all the info
    $datos_devueltos = $this->Modelocontrolador->getPrueba(NULL, "Usuarios"); 

    if(!is_null($datos_devueltos)){
       $this->response(array("response" => $datos_devueltos), 200);
    }else{
       $this->response(array("response" => "No date"), 200); 
    }
}
public function  find_get($id){ //select where
    $datos_devueltos = $this->Modelocontrolador->getPrueba($id, "Usuarios");
    if($id != NULL){
        if(!is_null($datos_devueltos)){
           $this->response(array("response" => $datos_devueltos), 200);
        }else{
           $this->response(array("response" => "No date"), 200); 
        }
    }else{
        $this->response(array("response" => "No dates for search"), 200); 
    }
}

public function index_post() { //insert in la table
    if(! $this -> post("dato")){
        $this->response(array("response" => "No enought info"), 200); 
    }else{
        $datoID = $this -> Modelocontrolador -> save($this -> post("dato"),"UsuariosJJ");

        if(!is_null($datoID)){
           $this->response(array("response" => $datoID), 200); 
        }else{
           $this->response(array("response" => "No found it"), 200); 
        }
    }
}
public function index_put($id) { //"update"
    if(! $this -> post("dato") || ! $id){
        $this->response(array("response" => "No ha mandado informacion correcta para el update"), 200); 
    }else{
        $datoID = $this -> Modelocontrolador -> update("Uid",$id,$this -> post("dato"),"UsuariosJJ");

        if(!is_null($datoID)){
           $this->response(array("response" => "Dato actualizado"), 200); 
        }else{
           $this->response(array("response" => "Error modify"), 200); 
        }
    }

}
public function index_delete($id) {
    if(! $id){
        $this->response(array("response" => "Not enought info"), 200); 
    }else{
        $delete = $this-> Modelocontrolador -> delete("Uid",$id,"UsuariosJJ");
    }

    if(!is_null($delete)){
        $this->response(array("response" => "Date delete"), 200); 
    }else{
        $this->response(array("response" => "Error delete"), 200); 
    }

}}

我的路线档案:

$route['default_controller'] = 'Apicontroller';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;

/*sub-rutas*/
/*---------*/
$route["Apicontroller"]["get"] = "Apicontroller/index"; //basico
$route["Apicontroller/(:num)"]["get"] = "Apicontroller/find"; //select
$route["Apicontroller"]["post"] = "Apicontroller/index"; //insert
$route["Apicontroller/(:num)"]["put"] = "Apicontroller/index/$1"; //update
$route["Apicontroller/(:num)"]["delete"] = "Apicontroller/index/$1"; //delete

2 个答案:

答案 0 :(得分:0)

如果浏览器请求字面上使用 / API ,那么路由需要“看到”那个。此外,路由规则必须与要调用的方法一致。 (希望显示的代码反映出您的想法。)

/*sub-rutas*/
/*---------*/
$route["API"]["get"] = "Apicontroller/index_get"; //basico
$route["API/(:num)"]["get"] = "Apicontroller/find_get/$1"; //select
$route["API"]["post"] = "Apicontroller/index_post"; //insert
$route["API/(:num)"]["put"] = "Apicontroller/index_put/$1"; //update
$route["API/(:num)"]["delete"] = "Apicontroller/index_delete/$1"; //delete

使用上面的路线我创建了一些测试代码。这些是那些文件。

简化的Apicontroller。

class Apicontroller extends CI_Controller
{
  function __construct()
  {
    parent::__construct();
  }

  function index_get()
  {
    echo "API index";
  }

  public function find_get($id)
  { //select where
    echo "API find_get $id";
  }

  public function index_post()
  {
    echo 'API index_post';
  }

  public function index_put($id)
  { //"update"
    echo "API put $id";
  }
}

我不相信,因为你的Apicontroller扩展了不同的类,结果会改变。这可能是一个激烈的假设。

为了测试POST调用,我使用了这两个文件。 首先是一个Testpost.php控制器

class Testpost extends CI_Controller
{
  public function __construct()
  {
    parent::__construct();
    $this->load->helper('form');
  }

  public function index()
  {
    $this->load->view("test");
  }

}

上面加载的非常简单的视图(test.php)。

<?php
echo form_open("API");
echo form_submit('mysubmit', 'Submit Post!');
echo form_close();

将浏览器定向到 localhost / testpost 会显示一个包含单个提交按钮的页面。按下按钮会生成一个带有“API index_post”文本的屏幕。

将浏览器发送到 localhost / API / 3 会生成一个文本为“API find_get 3”的屏幕。

localhost / API 生成“API索引”。

现在有趣的事情(与你的问题无关,但很有趣)。

鉴于默认

$route['default_controller'] = 'Apicontroller'; 

和路线

$route["API"]["get"] = "Apicontroller/index_get";

我希望将浏览器定向到主页 localhost 会产生“API索引”。但事实并非如此。它导致404.由于这种行为,使用default_controller更加明确

可能是明智的
$route['default_controller'] = 'Apicontroller/index_get';

或者向Apicontroller添加index()函数,调用$this->index_get()

我没有测试PUT或DELETE,因为我的服务器没有设置来处理它们。但是,由于GET和POST似乎起作用,在正义的世界中,它们会起作用。

答案 1 :(得分:0)

好像你正在使用PHIL的REST_Controller库和CI 2.x,对吗?

如果是这样,我会建议你使用我喜欢称之为&#34;索引的网关&#34;因为你不能用CI2进行每个方法路由:

class Apicontroller extends REST_Controller
{
  function index_gateway_get($id){
    $this->get_get($id);
  }

  function index_gateway_put($id){
    $this->put_put($id);
  }

  // This is not a "gateway" method because POST doesn't require an ID
  function index_post(){
    $this->post_post();
  }

  function get_get($id = null){
    if(!isset($id)){
      // Get all rows
    }else{
      // Get specific row
    }
  }

  function put_put($id = null){
    if(!isset($id)){
      // a PUT withtout an ID is a POST
      $this->post_post();
    }else{
      // PUT method
    }
  }

  function post_post(){
    // POST method
  }
}

使这项工作的路由非常简单:

$route["API/(:num)"] = "Apicontroller/index_gateway/$1";

这就是你所需要的一切。根据使用的方法,Phil的REST库将重定向到正确的index_gateway_HTTPMETHOD。 然后,每个index_gateway_HTTPMETHOD将重定向到正确的方法。

据我所知,这个技巧是使CI2使用适用于所有HTTP方法的单个/ API /入口点的唯一方法。