$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();
}
如何在单个控制器中使用多个模型来实现超薄框架
答案 0 :(得分:0)
是的,你可以。 Slim并不关心你在路由可调用时做了什么。