我在模型Cate中声明了一个方法:public function showAll(){ return 'a'; }
,在控制器CateController中,怎么才能调用???
1、把showAll方法增加static声明,然后可以用Cate::showAll()调用
2、或者,先new,再用,既:
在上面添加use app\models\Cate;
再在控制器的方法里调用Cate::showAll();
我在模型Cate中声明了一个方法:public function showAll(){ return 'a'; }
,在控制器CateController中,怎么才能调用???
1、把showAll方法增加static声明,然后可以用Cate::showAll()调用
2、或者,先new,再用,既:
在上面添加use app\models\Cate;
再在控制器的方法里调用Cate::showAll();