# 显示页面模板
想要在控制器中调用显示一个模板,就需要用到$this->display()这个方法,而模板的具体要求请参考 <span style="color:#ff0000;">**视图**</span> 章节。
### 调用控制器的方法对应的模板
直接使用$this->display()方法。
~~~
//Index控制器的index方法,调用display()方法,将调用/app/View/Index/index.php文件并显示。
class IndexController extends Controller{
public function index(){
$this->display();
}
}
~~~