我工作的基础笨+ HMVC应用程序,我尝试添加一个新的模块。 我用菲尔鲟鱼的REST_Controller 2.6.0和格式库创建一个REST API作为一个模块。
当我试图让例如http://api.example.com/user/id/1/或http://api.example.com/user/id/1/format/json我gеt下面的错误:
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
芬利,我用的是默认的配置,我没有改变任何东西。 该格式库中自动加载autoload.php。 有任何想法吗?