在我的情况下,我制作了一个具有以下结构的子弹表:
+--------------------+------------+--------+
| Slug | Controller | Action |
+--------------------+------------+--------+
| a-hello-world | page | index |
| user-profile-dummy | member | index |
+--------------------+------------+--------+
我有一个默认的控制器名称Home
,现在我想加载这样的动作。 mysite.com/a-hello-world
,它将使用page
方法和参数index
向a-hello-world
控制器发送调用。
我已经尝试过
$this->load->library('../controllers/page');
$this->page->index('a-hello-world');
但是CI v.3不支持它,并且给出了我在Page
控制器中使用的其他库的错误