>我用这个安装代码点火器:https://github.com/kenjis/codeigniter-composer-installer
当我尝试安装休息 API 时:https://github.com/chriskacerguis/codeigniter-restserver
当我扩展REST_Controller时工作正常,但是当我使用作曲家安装他时如何运行 REST API 示例?
是的,这是转储问题
有用的链接:代码点火器-休息服务器处理请求
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Api extends REST_Controller
{
public function example_get()
{
echo "Called is called by Get method";
}
public function example_post()
{
echo "Called is called by Post method";
}
}
?>
所以你只需要调用本地主机/公共/api/example,这将调用Api::example_get((
当控制器从REST_Controller扩展时,方法名称将附加用于访问请求的 HTTP 方法。例如,如果你对/example 进行 HTTP GET 调用,它会调用 Api#example_get(( 方法,或者如果你对/example 进行 HTTP POST 调用,例如,它会调用 Api#example_post(( 方法