我们可以在超薄框架中的单个控制器中使用多个模型

时间:2017-05-18 10:50:50

标签: php slim

 $this->app->post('/tech-master/stores/config/add', array($this, 'defaultConfig'));
        $this->app->get('/tech-master/stores/config/edit/:userId', array($this, 'editConfigById'));
        // Created obj of Users model
        $this->userObj = new Users();
        $this->storeObj = new Stores();
    }

如何在单个控制器中使用多个模型来实现超薄框架

1 个答案:

答案 0 :(得分:0)

是的,你可以。 Slim并不关心你在路由可调用时做了什么。