Symfony2 Twig停止逃离路径

时间:2012-05-17 10:10:59

标签: symfony twig

我需要将从path生成的非转义URL放入input元素。

的routing.yml

profile_delete:
  pattern: /student_usun/{id}
  defaults: { _controller: YyyXXXBundle:Profile:delete }

list.html.twig

<input id="deleteUrl" value="{{ path('profile_delete', {id: '$'}) }}"/>

结果是:

<input id="deleteUrl" value="/student_usun/%24"/>

我尝试了|raw过滤器,并在{% autoescape false %}标记之间添加了twig代码,结果仍然相同。

2 个答案:

答案 0 :(得分:13)

Twig没有附带url_decode过滤器来匹配其url_encode one,因此您需要编写它。

src /你的/ Bundle / Twig / Extension / YourExtension.php

<?php

namespace Your\Bundle\Twig\Extension;

class YourExtension extends \Twig_Extension
{
    /**
     * {@inheritdoc}
     */
    public function getFilters()
    {
        return array(
            'url_decode' => new \Twig_Filter_Method($this, 'urlDecode')
        );
    }

    /**
     * URL Decode a string
     *
     * @param string $url
     *
     * @return string The decoded URL
     */
    public function urlDecode($url)
    {
        return urldecode($url);
    }

    /**
     * Returns the name of the extension.
     *
     * @return string The extension name
     */
    public function getName()
    {
        return 'your_extension';
    }
}

然后将其添加到 app / config / config.yml

中的服务配置中
services:
    your.twig.extension:
        class: Your\Bundle\Twig\Extension\YourExtension
        tags:
            -  { name: twig.extension }

然后使用它!

<input id="deleteUrl" value="{{ path('profile_delete', {id: '$'})|url_decode }}"/>

答案 1 :(得分:0)

如果你正在使用:

'url_decode' => new \Twig_Function_Method($this, 'urlDecode') 

并收到错误:

Error: addFilter() must implement interface Twig_FilterInterface, instance of Twig_Function_Method given 

取代:

new \Twig_Function_Method($this, 'urlDecode')" 

使用:

new \Twig_Filter_Method($this, 'urlDecode')"

最佳