用于简单功能的twig is_safe不起作用

时间:2015-05-18 08:56:19

标签: javascript symfony filter escaping twig

我创建了一个简单的函数,用js渲染模板。 我希望它能自动调用,所以我已经将is_safe参数设置为array(html')而不必使用| raw filter

然而它不起作用,jsis没有转义,而是呈现为纯文本。如果我使用原始过滤器,它可以正常工作。

我该如何解决这个问题?

我的简单功能:

<?php

namespace AppBundle\Extension\Twig;

use AppBundle\FoodMeUpParameters;
use AppBundle\Model\Interfaces\ViewCountInterface;
use ReflectionClass;
use Symfony\Component\DependencyInjection\ContainerInterface;

class FMUTwigExtension extends \Twig_Extension
{
    /**
     * @var ContainerInterface
     */
    private $container;

    public function setContainer(ContainerInterface $container)
    {
        $this->container = $container;
    }

    public function getFunctions()
    {
        return array(
            'increaseViewCount' => new \Twig_SimpleFunction('increaseViewCount', array($this, 'increaseViewCount', array('is_safe' => array('html')))),
        );
    }


    public function increaseViewCount(ViewCountInterface $entity, $andFlush = true)
    {
        $reflect = new ReflectionClass($entity);

        $parameters = array(
            'short_name' => $reflect->getShortName(),
            'identifier' => $entity->getId(),
            'and_flush' => $andFlush
        );

        return $this->container->get('templating')->render(':Helper:increase_view_count.htmpl.twig', $parameters);
    }
}

我的模板:

<script>
    $(function(){
        $.ajax({
            url: '{{ path('increase_view_count') }}',
            type: "post",
            dataType: "json",
            data: {shortName: '{{ short_name }}', identifier: '{{ identifier }}', andFlush: '{{ and_flush }}'},
            success: function (result) {
                console.log(result);
            }
        });
    });
</script>

服务声明

fmu_twig_extension:
    class: %fmu_twig_extension.class%
    calls:
        - [setContainer, [@service_container]]
    tags:
        - { name: twig.extension }

2 个答案:

答案 0 :(得分:5)

您在回调中包含了'is_safe'个选项,而不是在下一个($options)参数中。

你需要改变....

'increaseViewCount' => new \Twig_SimpleFunction('increaseViewCount', array($this, 'increaseViewCount', array('is_safe' => array('html')))),

...到......

'increaseViewCount' => new \Twig_SimpleFunction('increaseViewCount', array($this, 'increaseViewCount'), array('is_safe' => array('html'))),

答案 1 :(得分:-1)

我想,在你的情况下,你应该选择'is_safe' => ['js']。如果由于某种原因没有帮助,您可以使用Twig过滤器raw中的定义,其中defined is_safe as all