使用php为渲染把手创建帮助器

时间:2016-07-15 12:57:59

标签: php handlebars.js php-5.3 handlebarshelper

我有一个大问题,我不明白如何解决这个问题。 所以我有一个帮助班:

class IfCondHelper implements HelperInterface
{
public function execute(Template $template, HandlebarsContent $context, $args, $source)
{
    $parsed_args = $template->parseArguments($args);

    if (count($parsed_args) != 3) {
        throw new \InvalidArgumentException(
            '"IfCond" helper expects exactly three arguments.'
        );
    }

    switch ($context->get($parsed_args[1])) {
        case "==":
            return ($context->get($parsed_args[0]) == $context->get($parsed_args[2])) ? $source : false;
            break;
..............
     }
}

现在在我的模板中我做了:

{{#ifCond 2 '==' 2}} {{data.oUser.number}} {{/ifCond}}

问题是该模板没有显示data.oUser.number whitch为4的值,但显示代码data.oUser.number whitout解释它们。帮助程序工作正常,因为如果我这样做:

{{#ifCond 2 '==' 2}} <p>Test</p> {{/ifCond}} 

这很好用。你能帮我吗 ? Thx提前和抱歉我的英语

1 个答案:

答案 0 :(得分:0)

我发现错误,需要在调用帮助程序后进行补充渲染

return ($context->get($parsed_args[0]) == $context->get($parsed_args[2])) ? $template->render($context) : false;