php – phalcon控制器indexAction分解

我是Phalcon框架的新手.我刚刚得到了关于它的基本想法.每个控制器都有多个特定操作的方法.我写了一个巨大的indexAction方法,但现在我想用多个私有方法将其分解,以便我可以重用这些功能.但是当我尝试创建没有动作后缀的任何方法时,它会返回错误(找不到页面).如何将其分解为多种方法? 最佳答案

<?php

use Phalcon\Mvc\Controller;

class PostsController extends Controller
{
    public function indexAction()
    {
        $this->someMethod();
    }

    public function someMethod()
    {
        //do your things
    }
}
点赞