控制器中获取模板执行结果方法为:fetch()

    而将内容输出方法为:display()

    代码如下,获取模板执行结果:

    $content=$this->fetch('Blog.show');

    将模板内容输出:

    $this->display(); //调用默认对应模板

    原文: http://www.g-framework.com/doc/41.html