ZF_FORM:如何为表单元素添加一些视图模板?

发布于 2024-11-13 03:36:49 字数 643 浏览 7 评论 0原文

我在表单对象中创建了元素:

function createElement()
{
    $template = new Zend_Form_Element_Hidden('field');
    $template->addDecorator('ViewScript', array('placement' => 'prepend', 'viewModule' => 'admin', 'viewScript' => 'values.phtml'))

   $this->addElement($template);
}

function setViewTemplate($values)
{
     $view = new Zend_View();
     $view->setScriptPath(APPLICATION_PATH . '/scripts/');
     $view->assign('values', $values);

     $this->getElement('field')->setView($view);
}

但在视图脚本“values.phtml”中,我无法访问 $this->values 等值。 我在这里做错了什么? 我知道添加自己的装饰器会很好,但是使用 zends 的装饰器很有趣。

I created element in form object:

function createElement()
{
    $template = new Zend_Form_Element_Hidden('field');
    $template->addDecorator('ViewScript', array('placement' => 'prepend', 'viewModule' => 'admin', 'viewScript' => 'values.phtml'))

   $this->addElement($template);
}

function setViewTemplate($values)
{
     $view = new Zend_View();
     $view->setScriptPath(APPLICATION_PATH . '/scripts/');
     $view->assign('values', $values);

     $this->getElement('field')->setView($view);
}

But in the view script 'values.phtml' I cannot get access to values like $this->values.
What I'm doing wrong here?
I know that it would be good to add own decorator, but it is interesting to use zends' decorators.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

单调的奢华 2024-11-20 03:36:49

来自 Zend Framework 文档: Zend Framework 附带的标准表单装饰器部分
Zend_Form_Decorator_ViewScript

此外,所有选项都传递给
装饰器通过 setOptions() 实现
不在内部使用(例如
放置、分隔符等)已通过
作为视图变量添加到视图脚本中。

function setViewTemplate($values)
{
     $this->getElement('field')
          ->getDecorator('ViewScript')
          ->setOptions('values', $values);
}

From the Zend Framework Documentation: Standard Form Decorators Shipped With Zend Framework Section
Zend_Form_Decorator_ViewScript

Additionally, all options passed to
the decorator via setOptions() that
are not used internally (such as
placement, separator, etc.) are passed
to the view script as view variables.

function setViewTemplate($values)
{
     $this->getElement('field')
          ->getDecorator('ViewScript')
          ->setOptions('values', $values);
}
浊酒尽余欢 2024-11-20 03:36:49

您可以使用属性

$template->setAttrib('key', 'value');

和模板重新设计它

<?php echo $this->element->getAttrib('key'); ?>

you can reslove it with using attribs

$template->setAttrib('key', 'value');

and in template

<?php echo $this->element->getAttrib('key'); ?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文