编程语言
首页 > 编程语言> > php-Codeigniter HMVC REST

php-Codeigniter HMVC REST

作者:互联网

我正在基于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中.有任何想法吗?

解决方法:

您需要更改Rest_Controller以扩展HMVC的MX_Controller而不是CI_Controller.

标签:hmvc,php,codeigniter,rest,api
来源: https://codeday.me/bug/20191011/1893149.html