使用视图(Using Views)

视图代表了应用程序中的用户界面. 视图通常是在 HTML 文件里嵌入 PHP 代码,这些代码仅仅是用来展示数据。 视图的任务是当应用程序发生请求时,提供数据给 web 浏览器或者其他工具。

Phalcon\Mvc\ViewPhalcon\Mvc\View\Simple 负责管理你的MVC应用程序的视图(View)层。

集成视图到控制器(Integrating Views with Controllers)

当某个控制器已经完成了它的周期,Phalcon自动将执行传递到视图组件。视图组件将在视图文件夹中寻找一个文件夹名与最后一个控制器名相同,文件命名与最后一个动作相同的文件执行。例如,如果请求的URL http://127.0.0.1/blog/posts/show/301, Phalcon将如下所示的方式按解析URL:

Server Address127.0.0.1
Phalcon Directoryblog
Controllerposts
Actionshow
Parameter301

调度程序将寻找一个“PostsController”控制器及其“showAction”动作。对于这个示例的一个简单的控制器文件:

  1. <?php
  2. use Phalcon\Mvc\Controller;
  3. class PostsController extends Controller
  4. {
  5. public function indexAction()
  6. {
  7. }
  8. public function showAction($postId)
  9. {
  10. // Pass the $postId parameter to the view
  11. $this->view->postId = $postId;
  12. }
  13. }

setVar允许我们创建视图变量,这样可以在视图模板中使用它们。上面的示例演示了如何传递 $postId 参数到相应的视图模板。

分层渲染(Hierarchical Rendering)

Phalcon\Mvc\View 支持文件的层次结构,在Phalcon中是默认的视图渲染组件。这个层次结构允许通用的布局点(常用的视图)和以控制器命名的文件夹中定义各自的视图模板

该组件使用默认PHP本身作为模板引擎,因此视图应该以.phtml作为拓展名。如果视图目录是 app/views ,视图组件会自动找到这三个视图文件。

名称文件解释
Action Viewapp/views/posts/show.phtml这是该动作相关的视图。它只会在执行 “show” 动作时显示。
Controller Layoutapp/views/layouts/posts.phtml这是该控制器相关的视图。它只会 “posts” 控制器内每个动作执行时显示。这个控制器的所有动作将重用这个布局的全部代码。
Main Layoutapp/views/index.phtml这是主布局,它将在应用程序的每个控制器或动作执行时显示。

你不需要实现上面提到的所有文件。在文件的层次结构中 Phalcon\Mvc\View 将简单地移动到下一个视图级别。如果这三个视图文件被实现,他们将被按下面方式处理:

  1. <!-- app/views/posts/show.phtml -->
  2. <h3>This is show view!</h3>
  3. <p>I have received the parameter <?php echo $postId; ?></p>
  1. <!-- app/views/layouts/posts.phtml -->
  2. <h2>This is the "posts" controller layout!</h2>
  3. <?php echo $this->getContent(); ?>
  1. <!-- app/views/index.phtml -->
  2. <html>
  3. <head>
  4. <title>Example</title>
  5. </head>
  6. <body>
  7. <h1>This is main layout!</h1>
  8. <?php echo $this->getContent(); ?>
  9. </body>
  10. </html>

注意方法 $this->getContent() 被调用的这行。这种方法指示 Phalcon\Mvc\View 在这里注入前面视图层次结构执行的内容。在上面的示例中,输出将会是:

../_images/views-1.png

请求生成的HTML的将为:

  1. <!-- app/views/index.phtml -->
  2. <html>
  3. <head>
  4. <title>Example</title>
  5. </head>
  6. <body>
  7. <h1>This is main layout!</h1>
  8. <!-- app/views/layouts/posts.phtml -->
  9. <h2>This is the "posts" controller layout!</h2>
  10. <!-- app/views/posts/show.phtml -->
  11. <h3>This is show view!</h3>
  12. <p>I have received the parameter 101</p>
  13. </body>
  14. </html>

使用模版(Using Templates)

模板视图可以用来分享共同的视图代码。他们作为控制器的布局,所以你需要放在布局目录。

模板视图可以在布局之前渲染(使用 $this->view->setTemplateBefore() 方法) ,也可以布局之后渲染(使用 this->view->setTemplateAfter() 方法)。 下面的例子中,模板视图(layouts/common.phtml)是在布局(layouts/posts.phtml)之后渲染的:

  1. <?php
  2. use Phalcon\Mvc\Controller;
  3. class PostsController extends Controller
  4. {
  5. public function initialize()
  6. {
  7. $this->view->setTemplateAfter("common");
  8. }
  9. public function lastAction()
  10. {
  11. $this->flash->notice(
  12. "These are the latest posts"
  13. );
  14. }
  15. }
  1. <!-- app/views/index.phtml -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <title>Blog's title</title>
  6. </head>
  7. <body>
  8. <?php echo $this->getContent(); ?>
  9. </body>
  10. </html>
  1. <!-- app/views/layouts/common.phtml -->
  2. <ul class="menu">
  3. <li><a href="/">Home</a></li>
  4. <li><a href="/articles">Articles</a></li>
  5. <li><a href="/contact">Contact us</a></li>
  6. </ul>
  7. <div class="content"><?php echo $this->getContent(); ?></div>
  1. <!-- app/views/layouts/posts.phtml -->
  2. <h1>Blog Title</h1>
  3. <?php echo $this->getContent(); ?>
  1. <!-- app/views/posts/last.phtml -->
  2. <article>
  3. <h2>This is a title</h2>
  4. <p>This is the post content</p>
  5. </article>
  6. <article>
  7. <h2>This is another title</h2>
  8. <p>This is another post content</p>
  9. </article>

最终的输出如下:

  1. <!-- app/views/index.phtml -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <title>Blog's title</title>
  6. </head>
  7. <body>
  8. <!-- app/views/layouts/common.phtml -->
  9. <ul class="menu">
  10. <li><a href="/">Home</a></li>
  11. <li><a href="/articles">Articles</a></li>
  12. <li><a href="/contact">Contact us</a></li>
  13. </ul>
  14. <div class="content">
  15. <!-- app/views/layouts/posts.phtml -->
  16. <h1>Blog Title</h1>
  17. <!-- app/views/posts/last.phtml -->
  18. <article>
  19. <h2>This is a title</h2>
  20. <p>This is the post content</p>
  21. </article>
  22. <article>
  23. <h2>This is another title</h2>
  24. <p>This is another post content</p>
  25. </article>
  26. </div>
  27. </body>
  28. </html>

如果我们调用 $this->view->setTemplateBefore("common") 方法, 最终输出如下:

  1. <!-- app/views/index.phtml -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <title>Blog's title</title>
  6. </head>
  7. <body>
  8. <!-- app/views/layouts/posts.phtml -->
  9. <h1>Blog Title</h1>
  10. <!-- app/views/layouts/common.phtml -->
  11. <ul class="menu">
  12. <li><a href="/">Home</a></li>
  13. <li><a href="/articles">Articles</a></li>
  14. <li><a href="/contact">Contact us</a></li>
  15. </ul>
  16. <div class="content">
  17. <!-- app/views/posts/last.phtml -->
  18. <article>
  19. <h2>This is a title</h2>
  20. <p>This is the post content</p>
  21. </article>
  22. <article>
  23. <h2>This is another title</h2>
  24. <p>This is another post content</p>
  25. </article>
  26. </div>
  27. </body>
  28. </html>

渲染级别控制(Control Rendering Levels)

如上所述,Phalcon\Mvc\View 支持视图分层。你可能需要控制视图组件的渲染级别。方法 Phalcon\Mvc\View::setRenderLevel() 提供这个功能。

这种方法可以从控制器调用或是从上级视图层干涉渲染过程。

  1. <?php
  2. use Phalcon\Mvc\View;
  3. use Phalcon\Mvc\Controller;
  4. class PostsController extends Controller
  5. {
  6. public function indexAction()
  7. {
  8. }
  9. public function findAction()
  10. {
  11. // This is an Ajax response so it doesn't generate any kind of view
  12. $this->view->setRenderLevel(
  13. View::LEVEL_NO_RENDER
  14. );
  15. // ...
  16. }
  17. public function showAction($postId)
  18. {
  19. // Shows only the view related to the action
  20. $this->view->setRenderLevel(
  21. View::LEVEL_ACTION_VIEW
  22. );
  23. }
  24. }

可用的渲染级别:

类常量解释顺 序
LEVEL_NO_RENDER表明要避免产生任何形式的显示。 
LEVEL_ACTION_VIEW生成显示到视图关联的动作。1
LEVEL_BEFORE_TEMPLATE生成显示到控制器模板布局之前。2
LEVEL_LAYOUT生成显示到控制器布局。3
LEVEL_AFTER_TEMPLATE生成显示到控制器模板布局后。4
LEVEL_MAIN_LAYOUT生成显示到主布局。文件: views/index.phtml5

关闭渲染级别(Disabling render levels)

你可以永久或暂时禁用渲染级别。如果不在整个应用程序使用,可以永久禁用一个级别:

  1. <?php
  2. use Phalcon\Mvc\View;
  3. $di->set(
  4. "view",
  5. function () {
  6. $view = new View();
  7. // Disable several levels
  8. $view->disableLevel(
  9. [
  10. View::LEVEL_LAYOUT => true,
  11. View::LEVEL_MAIN_LAYOUT => true,
  12. ]
  13. );
  14. return $view;
  15. },
  16. true
  17. );

或者在某些应用程序的一部分暂时或禁用:

  1. <?php
  2. use Phalcon\Mvc\View;
  3. use Phalcon\Mvc\Controller;
  4. class PostsController extends Controller
  5. {
  6. public function indexAction()
  7. {
  8. }
  9. public function findAction()
  10. {
  11. $this->view->disableLevel(
  12. View::LEVEL_MAIN_LAYOUT
  13. );
  14. }
  15. }

选择视图(Picking Views)

如上所述, 当 Phalcon\Mvc\ViewPhalcon\Mvc\Application 视图渲染的是最后的一个相关的控制器和执行动作。你可以使用 Phalcon\Mvc\View::pick() 方法覆盖它。

  1. <?php
  2. use Phalcon\Mvc\Controller;
  3. class ProductsController extends Controller
  4. {
  5. public function listAction()
  6. {
  7. // Pick "views-dir/products/search" as view to render
  8. $this->view->pick("products/search");
  9. // Pick "views-dir/books/list" as view to render
  10. $this->view->pick(
  11. [
  12. "books",
  13. ]
  14. );
  15. // Pick "views-dir/products/search" as view to render
  16. $this->view->pick(
  17. [
  18. 1 => "search",
  19. ]
  20. );
  21. }
  22. }

关闭视图(Disabling the view)

如果你的控制器不在视图里产生(或没有)任何输出,你可以禁用视图组件来避免不必要的处理:

  1. <?php
  2. use Phalcon\Mvc\Controller;
  3. class UsersController extends Controller
  4. {
  5. public function closeSessionAction()
  6. {
  7. // Close session
  8. // ...
  9. // Disable the view to avoid rendering
  10. $this->view->disable();
  11. }
  12. }

Alternatively, you can return false to produce the same effect:

  1. <?php
  2. use Phalcon\Mvc\Controller;
  3. class UsersController extends Controller
  4. {
  5. public function closeSessionAction()
  6. {
  7. // ...
  8. // Disable the view to avoid rendering
  9. return false;
  10. }
  11. }

你可以返回一个“response”的对象,避免手动禁用视图:

  1. <?php
  2. use Phalcon\Mvc\Controller;
  3. class UsersController extends Controller
  4. {
  5. public function closeSessionAction()
  6. {
  7. // Close session
  8. // ...
  9. // A HTTP Redirect
  10. return $this->response->redirect("index/index");
  11. }
  12. }

简单渲染(Simple Rendering)

Phalcon\Mvc\View\SimplePhalcon\Mvc\View 的另一个组成部分。 它保留 Phalcon\Mvc\View 的大多数的设计思想,但缺少文件的层次结构是它们的主要区别。

该组件允许开发人员控制渲染视图时,视图所在位置。 此外,该组件可以利用从视图中继承的可用的模板引擎。比如 Volt 和其他的一些模板引擎。

默认使用该组件必须替换服务容器:

  1. <?php
  2. use Phalcon\Mvc\View\Simple as SimpleView;
  3. $di->set(
  4. "view",
  5. function () {
  6. $view = new SimpleView();
  7. $view->setViewsDir("../app/views/");
  8. return $view;
  9. },
  10. true
  11. );

自动渲染必须在 Phalcon\Mvc\Application 被禁用 (如果需要):

  1. <?php
  2. use Exception;
  3. use Phalcon\Mvc\Application;
  4. try {
  5. $application = new Application($di);
  6. $application->useImplicitView(false);
  7. $response = $application->handle();
  8. $response->send();
  9. } catch (Exception $e) {
  10. echo $e->getMessage();
  11. }

渲染一个视图必须显式地调用render方法来指定你想显示的视图的相对路径:

  1. <?php
  2. use Phalcon\Mvc\Controller;
  3. class PostsController extends \Controller
  4. {
  5. public function indexAction()
  6. {
  7. // Render 'views-dir/index.phtml'
  8. echo $this->view->render("index");
  9. // Render 'views-dir/posts/show.phtml'
  10. echo $this->view->render("posts/show");
  11. // Render 'views-dir/index.phtml' passing variables
  12. echo $this->view->render(
  13. "index",
  14. [
  15. "posts" => Posts::find(),
  16. ]
  17. );
  18. // Render 'views-dir/posts/show.phtml' passing variables
  19. echo $this->view->render(
  20. "posts/show",
  21. [
  22. "posts" => Posts::find(),
  23. ]
  24. );
  25. }
  26. }

This is different to Phalcon\Mvc\View who’s render() method uses controllers and actions as parameters:

  1. <?php
  2. $params = [
  3. "posts" => Posts::find(),
  4. ];
  5. // Phalcon\Mvc\View
  6. $view = new \Phalcon\Mvc\View();
  7. echo $view->render("posts", "show", $params);
  8. // Phalcon\Mvc\View\Simple
  9. $simpleView = new \Phalcon\Mvc\View\Simple();
  10. echo $simpleView->render("posts/show", $params);

使用局部模版(Using Partials)

局部模板是把渲染过程分解成更简单、更好管理的、可以重用不同部分的应用程序块的另一种方式。你可以移动渲染特定响应的代码块到自己的文件。

使用局部模板的一种方法是把它们作为相等的子例程:作为一种移动细节视图,这样您的代码可以更容易地被理解。例如,您可能有一个视图看起来像这样:

  1. <div class="top"><?php $this->partial("shared/ad_banner"); ?></div>
  2. <div class="content">
  3. <h1>Robots</h1>
  4. <p>Check out our specials for robots:</p>
  5. ...
  6. </div>
  7. <div class="footer"><?php $this->partial("shared/footer"); ?></div>

方法 partial() 也接受一个只存在于局部范围的变量/参数的数组作为第二个参数:

  1. <?php $this->partial("shared/ad_banner", ["id" => $site->id, "size" => "big"]); ?>

控制器传值给视图(Transfer values from the controller to views)

Phalcon\Mvc\View 可以在每个控制器中使用视图变量 ($this->view)。 你可以在控制器动作中使用视图对象的 setVar() 方法直接设置视图变量。

  1. <?php
  2. use Phalcon\Mvc\Controller;
  3. class PostsController extends Controller
  4. {
  5. public function indexAction()
  6. {
  7. }
  8. public function showAction()
  9. {
  10. $user = Users::findFirst();
  11. $posts = $user->getPosts();
  12. // Pass all the username and the posts to the views
  13. $this->view->setVar("username", $user->username);
  14. $this->view->setVar("posts", $posts;
  15. // Using the magic setter
  16. $this->view->username = $user->username;
  17. $this->view->posts = $posts;
  18. // Passing more than one variable at the same time
  19. $this->view->setVars(
  20. [
  21. "username" => $user->username,
  22. "posts" => $posts,
  23. ]
  24. );
  25. }
  26. }

名为:code:`setVar()`的第一参数值的变量将在视图中创建的,并且可以被使用。变量可以是任何类型:从一个简单的字符串,整数等等,变为更复杂的结构,如数组,集合。

  1. <h1>
  2. {{ username }}'s Posts
  3. </h1>
  4. <div class="post">
  5. <?php
  6. foreach ($posts as $post) {
  7. echo "<h2>", $post->title, "</h2>";
  8. }
  9. ?>
  10. </div>

缓存视图片段(Caching View Fragments)

有时当你开发动态网站和一些区域不会经常更新,请求的输出是完全相同的。 Phalcon\Mvc\View 提供缓存全部或部分的渲染输出来提高性能。

Phalcon\Mvc\View 配合 Phalcon\Cache 能提供一种更简单的方法缓存输出片段。你可以手动设置缓存处理程序或一个全局处理程序。

  1. <?php
  2. use Phalcon\Mvc\Controller;
  3. class PostsController extends Controller
  4. {
  5. public function showAction()
  6. {
  7. // Cache the view using the default settings
  8. $this->view->cache(true);
  9. }
  10. public function showArticleAction()
  11. {
  12. // Cache this view for 1 hour
  13. $this->view->cache(
  14. [
  15. "lifetime" => 3600,
  16. ]
  17. );
  18. }
  19. public function resumeAction()
  20. {
  21. // Cache this view for 1 day with the key "resume-cache"
  22. $this->view->cache(
  23. [
  24. "lifetime" => 86400,
  25. "key" => "resume-cache",
  26. ]
  27. );
  28. }
  29. public function downloadAction()
  30. {
  31. // Passing a custom service
  32. $this->view->cache(
  33. [
  34. "service" => "myCache",
  35. "lifetime" => 86400,
  36. "key" => "resume-cache",
  37. ]
  38. );
  39. }
  40. }

如果我们没有定义缓存的key, 这个组件会自动创建一个 MD5 散列值(由当前控制器名和视图名组成”controller/view”的格式)作为key。 为每个action定义一个单独的缓存key,这是一个好的习惯与规范,这样你可以很容易地识别与每个视图相关联的缓存。

当视图组件需要缓存一些数据时,它会从服务容器(DI)中请求缓存服务。 这个服务的名称约定为”viewCache”:

  1. <?php
  2. use Phalcon\Cache\Frontend\Output as OutputFrontend;
  3. use Phalcon\Cache\Backend\Memcache as MemcacheBackend;
  4. // Set the views cache service
  5. $di->set(
  6. "viewCache",
  7. function () {
  8. // Cache data for one day by default
  9. $frontCache = new OutputFrontend(
  10. [
  11. "lifetime" => 86400,
  12. ]
  13. );
  14. // Memcached connection settings
  15. $cache = new MemcacheBackend(
  16. $frontCache,
  17. [
  18. "host" => "localhost",
  19. "port" => "11211",
  20. ]
  21. );
  22. return $cache;
  23. }
  24. );

前端 Phalcon\Cache\Frontend\Output 和服务 ‘viewCache’ 必须在服务容器(DI)注册为 总是开放的(不共享 not shared)

在视图中使用视图缓存也是有用的,以防止控制器执行过程所产生的数据被显示。

为了实现这一点,我们必须确定每个缓存键是独一无二的。 首先,我们验证缓存不存在或是否过期,再去计算/查询并在视图中显示数据:

  1. <?php
  2. use Phalcon\Mvc\Controller;
  3. class DownloadController extends Controller
  4. {
  5. public function indexAction()
  6. {
  7. // Check whether the cache with key "downloads" exists or has expired
  8. if ($this->view->getCache()->exists("downloads")) {
  9. // Query the latest downloads
  10. $latest = Downloads::find(
  11. [
  12. "order" => "created_at DESC",
  13. ]
  14. );
  15. $this->view->latest = $latest;
  16. }
  17. // Enable the cache with the same key "downloads"
  18. $this->view->cache(
  19. [
  20. "key" => "downloads",
  21. ]
  22. );
  23. }
  24. }

PHP alternative site 是实现缓存片段的一个例子。

模版引擎(Template Engines)

模板引擎可以帮助设计者不使用复杂的语法创建视图。Phalcon包含一个强大的和快速的模板引擎,它被叫做叫 Volt

此外, Phalcon\Mvc\View 允许你使用其它的模板引擎而不是简单的PHP或者Volt。

使用不同的模板引擎,通常需要使用外部PHP库并且引入复杂的文本解析来为用户生成最终的输出解析。这通常会增加一些你的应用程序的资源耗费。

如果一个外部模板引擎被使用,Phalcon\Mvc\View 提供完全相同的视图渲染等级,仍然可以尝试在这些模板内访问的更多的API。

该组件使用的适配器,这些适配器帮助 Phalcon 与外部模板引擎以一个统一的方式对话,让我们看看如何整合。

创建模版引擎(Creating your own Template Engine Adapter)

有很多模板引擎,你可能想整合或建立一个自己的。开始使用一个外部的模板引擎的第一步是创建一个适配器。

模板引擎的适配器是一个类,作为 Phalcon\Mvc\View 和模板引擎本身之间的桥梁。 通常它只需要实现两个方法: __construct() and render()。首先接收 Phalcon\Mvc\View 和应用程序使用的DI容器来创建引擎适配器实例。

方法 render() 接受一个到视图文件的绝对路径和视图参数,设置使用 $this->view->setVar()。必要的时候,你可以读入或引入它。

  1. <?php
  2. use Phalcon\DiInterface;
  3. use Phalcon\Mvc\Engine;
  4. class MyTemplateAdapter extends Engine
  5. {
  6. /**
  7. * Adapter constructor
  8. *
  9. * @param \Phalcon\Mvc\View $view
  10. * @param \Phalcon\Di $di
  11. */
  12. public function __construct($view, DiInterface $di)
  13. {
  14. // Initialize here the adapter
  15. parent::__construct($view, $di);
  16. }
  17. /**
  18. * Renders a view using the template engine
  19. *
  20. * @param string $path
  21. * @param array $params
  22. */
  23. public function render($path, $params)
  24. {
  25. // Access view
  26. $view = $this->_view;
  27. // Access options
  28. $options = $this->_options;
  29. // Render the view
  30. // ...
  31. }
  32. }

替换模版引擎(Changing the Template Engine)

你可以完全更换模板引擎或同时使用多个模板引擎。方法 Phalcon\Mvc\View::registerEngines() 接受一个包含定义模板引擎数据的数组。每个引擎的键名是一个区别于其他引擎的拓展名。模板文件和特定的引擎关联必须有这些扩展名。

Phalcon\Mvc\View::registerEngines() 会按照相关顺序定义模板引擎执行。如果 Phalcon\Mvc\View 发现具有相同名称但不同的扩展,它只会使第一个。

如果你想在应用程序的每个请求中注册一个或一组模板引擎。你可以在创建视图时注册服务:

  1. <?php
  2. use Phalcon\Mvc\View;
  3. // Setting up the view component
  4. $di->set(
  5. "view",
  6. function () {
  7. $view = new View();
  8. // A trailing directory separator is required
  9. $view->setViewsDir("../app/views/");
  10. // Set the engine
  11. $view->registerEngines(
  12. [
  13. ".my-html" => "MyTemplateAdapter",
  14. ]
  15. );
  16. // Using more than one template engine
  17. $view->registerEngines(
  18. [
  19. ".my-html" => "MyTemplateAdapter",
  20. ".phtml" => "Phalcon\\Mvc\\View\\Engine\\Php",
  21. ]
  22. );
  23. return $view;
  24. },
  25. true
  26. );

Phalcon Incubator 有一些适配器可用于数个模板引擎

注入服务到视图(Injecting services in View)

每个视图执行内部包含一个 Phalcon\Di\Injectable 实例, 提供方便地方式访问应用程序的服务容器。

下面的示例演示如何用一个框架约定好的URL服务写一个 jQuery ajax request 。 “url” (usually Phalcon\Mvc\Url) 服务被注入在视图由相同名称的属性访问:

  1. <script type="text/javascript">
  2. $.ajax({
  3. url: "<?php echo $this->url->get("cities/get"); ?>"
  4. })
  5. .done(function () {
  6. alert("Done!");
  7. });
  8. </script>

独立的组件(Stand-Alone Component)

在Phalcon的所有部件都可以作为胶水(glue) 组件单独使用,因为它们彼此松散耦合:

分层渲染(Hierarchical Rendering)

如下所示,可以单独使用 Phalcon\Mvc\View

  1. <?php
  2. use Phalcon\Mvc\View;
  3. $view = new View();
  4. // A trailing directory separator is required
  5. $view->setViewsDir("../app/views/");
  6. // Passing variables to the views, these will be created as local variables
  7. $view->setVar("someProducts", $products);
  8. $view->setVar("someFeatureEnabled", true);
  9. // Start the output buffering
  10. $view->start();
  11. // Render all the view hierarchy related to the view products/list.phtml
  12. $view->render("products", "list");
  13. // Finish the output buffering
  14. $view->finish();
  15. echo $view->getContent();

使用短的语法也可以:

  1. <?php
  2. use Phalcon\Mvc\View;
  3. $view = new View();
  4. echo $view->getRender(
  5. "products",
  6. "list",
  7. [
  8. "someProducts" => $products,
  9. "someFeatureEnabled" => true,
  10. ],
  11. function ($view) {
  12. // Set any extra options here
  13. $view->setViewsDir("../app/views/");
  14. $view->setRenderLevel(
  15. View::LEVEL_LAYOUT
  16. );
  17. }
  18. );

简单渲染(Simple Rendering)

如下所示,以单独使用 Phalcon\Mvc\View\Simple

  1. <?php
  2. use Phalcon\Mvc\View\Simple as SimpleView;
  3. $view = new SimpleView();
  4. // A trailing directory separator is required
  5. $view->setViewsDir("../app/views/");
  6. // Render a view and return its contents as a string
  7. echo $view->render("templates/welcomeMail");
  8. // Render a view passing parameters
  9. echo $view->render(
  10. "templates/welcomeMail",
  11. [
  12. "email" => $email,
  13. "content" => $content,
  14. ]
  15. );

视图事件(View Events)

如果事件管理器(EventsManager)存在,Phalcon\Mvc\ViewPhalcon\Mvc\View 能够发送事件到 EventsManager。事件触发使用的“view”类型。当返回布尔值false,一些事件可以停止运行。以下是被支持的事件:

事件名称触发点是否可以停止?
beforeRender渲染过程开始前触发Yes
beforeRenderView渲染一个现有的视图之前触发Yes
afterRenderView渲染一个现有的视图之后触发No
afterRender渲染过程完成后触发No
notFoundView视图不存在时触发No

下面的例子演示了如何将监听器附加到该组件:

  1. <?php
  2. use Phalcon\Events\Event;
  3. use Phalcon\Events\Manager as EventsManager;
  4. use Phalcon\Mvc\View;
  5. $di->set(
  6. "view",
  7. function () {
  8. // Create an events manager
  9. $eventsManager = new EventsManager();
  10. // Attach a listener for type "view"
  11. $eventsManager->attach(
  12. "view",
  13. function (Event $event, $view) {
  14. echo $event->getType(), " - ", $view->getActiveRenderPath(), PHP_EOL;
  15. }
  16. );
  17. $view = new View();
  18. $view->setViewsDir("../app/views/");
  19. // Bind the eventsManager to the view component
  20. $view->setEventsManager($eventsManager);
  21. return $view;
  22. },
  23. true
  24. );

下面的示例演示如何创建一个插件 Tidy ,清理/修复的渲染过程中产生的HTML:

  1. <?php
  2. use Phalcon\Events\Event;
  3. class TidyPlugin
  4. {
  5. public function afterRender(Event $event, $view)
  6. {
  7. $tidyConfig = [
  8. "clean" => true,
  9. "output-xhtml" => true,
  10. "show-body-only" => true,
  11. "wrap" => 0,
  12. ];
  13. $tidy = tidy_parse_string(
  14. $view->getContent(),
  15. $tidyConfig,
  16. "UTF8"
  17. );
  18. $tidy->cleanRepair();
  19. $view->setContent(
  20. (string) $tidy
  21. );
  22. }
  23. }
  24. // Attach the plugin as a listener
  25. $eventsManager->attach(
  26. "view:afterRender",
  27. new TidyPlugin()
  28. );