7

我正在编写自己的 MVC 框架,并已来到视图渲染器。我将控制器中的 vars 设置为 View 对象,然后在 .phtml 脚本中通过 echo $this->myvar 访问 vars。

在我的 default.phtml 中,我调用方法 $this->content() 来输出视图脚本。

这就是我现在做的方式。这是一个正确的方法吗?

class View extends Object {

    protected $_front;

    public function __construct(Front $front) {
        $this->_front = $front;
    }

    public function render() {                
        ob_start();
        require APPLICATION_PATH . '/layouts/default.phtml' ;            
        ob_end_flush();
    }

    public function content() {
        require APPLICATION_PATH . '/views/' . $this->_front->getControllerName() . '/' . $this->_front->getActionName() . '.phtml' ;
    }

}
4

2 回答 2

20

简单视图类的示例。与您和大卫爱立信的非常相似。

<?php

/**
 * View-specific wrapper.
 * Limits the accessible scope available to templates.
 */
class View{
    /**
     * Template being rendered.
     */
    protected $template = null;


    /**
     * Initialize a new view context.
     */
    public function __construct($template) {
        $this->template = $template;
    }

    /**
     * Safely escape/encode the provided data.
     */
    public function h($data) {
        return htmlspecialchars((string) $data, ENT_QUOTES, 'UTF-8');
    }

    /**
     * Render the template, returning it's content.
     * @param array $data Data made available to the view.
     * @return string The rendered template.
     */
    public function render(Array $data) {
        extract($data);

        ob_start();
        include( APP_PATH . DIRECTORY_SEPARATOR . $this->template);
        $content = ob_get_contents();
        ob_end_clean();
        return $content;
    }
}

?>

类中定义的函数将可以在视图中访问,如下所示:

<?php echo $this->h('Hello World'); ?>
于 2013-01-03T17:45:46.943 回答
14

这是我如何做到的一个例子:

<?php


class View
{
private $data = array();

private $render = FALSE;

public function __construct($template)
{
    try {
        $file = ROOT . '/templates/' . strtolower($template) . '.php';

        if (file_exists($file)) {
            $this->render = $file;
        } else {
            throw new customException('Template ' . $template . ' not found!');
        }
    }
    catch (customException $e) {
        echo $e->errorMessage();
    }
}

public function assign($variable, $value)
{
    $this->data[$variable] = $value;
}

public function __destruct()
{
    extract($this->data);
    include($this->render);

}
}
?>

我使用控制器中的 assign 函数来分配变量,并在析构函数中提取该数组以使它们成为视图中的局部变量。

如果您愿意,请随意使用它,我希望它能让您了解如何做到这一点

这是一个完整的例子:

class Something extends Controller 
{
    public function index ()
    {
    $view = new view('templatefile');
    $view->assign('variablename', 'variable content');
    }
}

在您的视图文件中:

<?php echo $variablename; ?>
于 2013-01-03T17:32:35.253 回答