我想要做的是获取存储在表单视图中的变量。
{% form_theme edit_form _self %}
{% block field_widget %}
{% spaceless %}
{% set type = type|default('text') %}
<input type="{{ type }}" {{ block('widget_attributes') }} {% if value is not empty %}value="{{ value }}" {% endif %}/>
{# MY CODE #}
{% if type == "file" %}
<a class="BOpreview" href="{# NEED TO REPLACE VAR HERE #}">Aperçu</a>
{% endif %}
{# MY ATTEMPT #}
{{ form.title.get('value') }}
{{ form.vars.value.url }}
{% endspaceless %}
{% endblock field_widget %}
我的表单具有 url、title 等属性,我试图在此处访问它们以在字段小部件块中使用它。
我搜索了它并来到https://groups.google.com/forum/?fromgroups=#!topic/symfony2/onor9uFte9E建议:
{{ form.title.get('value') }}
{{ form.vars.value.url }}
这对我不起作用。
注意:如果我在控制器中对 $form->createView() 执行 var_dump,我会得到:
object(Symfony\Component\Form\FormView)[331]
private 'vars' =>
array (size=15)
'value' =>
object(Panasonic\TestEtAvisBundle\Entity\Product)[168]
protected 'reviewArray' =>
object(Doctrine\ORM\PersistentCollection)[234]
...
protected 'testArray' =>
object(Doctrine\ORM\PersistentCollection)[221]
...
protected 'fbshareArray' =>
object(Doctrine\ORM\PersistentCollection)[317]
...
private 'id' => int 2
private 'name' => string 'Nom du produit' (length=14)
private 'title' => string '<span>Titre </span>' (length=19)
private 'image' => string 'bundles/testetavis/uploads/product/0d9d9550.png' (length=47)
private 'fbImage' => string 'bundles/testetavis/uploads/product/facebook//product_e928cd96.jpg' (length=65)
private 'description' => string '<span>Descriptif </span>' (length=24)
private 'url' => string 'http://www.google.com' (length=21)
private 'creationDate' =>
object(DateTime)[210]
...
private 'modificationDate' =>
object(DateTime)[209]
...
private 'isDeleted' => int 0
'attr' =>
array (size=0)
empty
'form' =>
&object(Symfony\Component\Form\FormView)[331]
'id' => string 'panasonic_testetavisbundle_producttype' (length=38)
'name' => string 'panasonic_testetavisbundle_producttype' (length=38)
'full_name' => string 'panasonic_testetavisbundle_producttype' (length=38)
例如,我想访问该 url,但经过多次变化后似乎无法访问。包括使用 {{ value }}, {{ value.url }} 但是尽管有 vars,我可以做 {{ full_name }} 并获得 panasonic_testetavisbundle_producttype。
有任何想法吗?
Edit2:我发现了真正的问题......
Edit3:看到这个问题很受欢迎,我决定澄清我试图做的事情,以防它对处于相同情况的人有所帮助。如果您严格依赖问题所提出的问题,正如我在研究中所说的那样,Besnik 支持的确实是正确的。现在我想做的是对于每个输入类型文件,从用于呈现表单的对象中获取 url,并在输入类型文件旁边使用检索到的 url 附加预览链接。如果您尝试在我的代码中获取输入类型“文件”的表单变量,例如“{{ form.vars.value.url }}”,这将不起作用,因为如果我没记错的话,您会收到一个令牌而不是存储在对象内的 url。