我正在开发基于 Codeigniter + HMVC 的应用程序,并且正在尝试添加一个新模块。我使用 Phil Sturgeon 的REST_Controller 2.6.0和Format库来创建一个 REST API 作为一个模块。
当我尝试获取例如http://api.example.com/user/id/1/或http://api.example.com/user/id/1/format/json时,我得到以下错误:
A PHP Error was encountered
Severity: Notice
Message: Undefined property: Api::$format
Filename: libraries/REST_Controller.php
Line Number: 380
在我的routes.php我有这个:
$route['user/id/(:num)/format/(:any)'] = "api/user/$1/format/$2";
$route['user/id/(:num)'] = "api/user/$1";
应用程序的目录结构为:
application
--modules
----api
------config
------controller
Finlay,我使用默认配置,我没有更改任何内容。格式库在autoload.php中自动加载。有任何想法吗?