我正在使用Symfony表单和Twig来创建一个过滤器,但是一些奇怪的事情正在发生,我无法弄清楚为什么。我有4个选择字段,前2个选项字段返回正确的值,但最后2个选择字段返回的值与第二个选择字段相同。
这是Controller的代码
// Create Form
$filterForm = $app['form.factory']->createNamed('filterForm')
// search
->add('title', 'text')
// date
->add('dates', 'choice', array(
'choices' => $DatesForCombo,
'placeholder' => 'Kies...',
'required' => false))
// category
->add('categories', 'choice', array(
'choices' => $CategoriesForCombo,
'placeholder' => 'Kies...',
'required' => false))
// location
->add('locations', 'choice', array(
'choices' => $LocationsForCombo,
'placeholder' => 'Kies...',
'required' => false))
// organiser
->add('organisers', 'choice', array(
'choices' => $OrganisersForCombo,
'placeholder' => 'Kies...',
'required' => false))
// is_gentian
->add('gents',null,array(
'label' => 'Enkel Gents gesproken',
'required' => false))
->add('gentsGesproken', 'checkbox', array(
'value' => 'Y',
'required' => false))
// is_free
->add('gratis',null,array(
'label' => 'Enkel gratis events',
'required' => false))
->add('gratisEvents', 'checkbox', array(
'value' => 'Y',
'required' => false));
这是Twig Template
的代码<form action="{{ path('events.index') }}" method="post" {{ form_enctype(filterForm) }} novalidate="novalidate" role="form">
<fieldset>
<legend>Filter Events</legend>
<div class="form-group">
{{ form_widget(filterForm.title, { 'attr' : { 'class': 'form-control', 'name' : 'filterform[title]', 'id':'filterform_title' }} ) }}
</div>
<!-- filter dates -->
<div class="form-group">
{{ form_widget(filterForm.dates, { 'attr' : { 'class': 'form-control', 'name' : 'filterform[day]', 'id':'filterform_title' }} ) }}
</div>
<!-- filter categories -->
<div class="form-group">
{{ form_widget(filterForm.categories, { 'attr' : { 'class': 'form-control', 'name' : 'filterform[category]', 'id':'filterform_categories' }} ) }}
</div>
<!-- filter location -->
<div class="form-group">
{{ form_widget(filterForm.locations, { 'attr' : { 'class': 'form-control', 'name' : 'filterform[location]', 'id':'locations' }} ) }}
</div>
<!-- filter organisers -->
<div class="form-group">
{{ form_widget(filterForm.organisers, { 'attr' : { 'class': 'form-control', 'name' : 'filterform[organiser]', 'id':'organisers' }} ) }}
</div>
<div class="form-group">
<!-- filter chckbx Gents gesproken -->
<label>
{{ form_widget(filterForm.gentsGesproken) }}
{{ form_label(filterForm.gents) }}
</label>
<!-- filter chckbx Gratis events -->
<label>
{{ form_widget(filterForm.gratisEvents) }}
{{ form_label(filterForm.gratis) }}
</label>
</div>
<input type="hidden" id="filterform__token" name="filterform[_token]" value="lJ3pQTYX8yEbYpDhmHH6V_ktwtbz_5BdWP0Fss6Z7s0" />
<button type="submit" id="filterform_filter" name="filterform[filter]" class="btn btn-primary pull-right">Filter</button>
</fieldset>
</form>
使用的4个阵列当然不同,有人可以帮助我吗?
答案 0 :(得分:0)
我找到了解决方案,一些未正确编码的html字符,即使我的数据库在utf8mb5_general_ci中,我在模板中使用UTF-8,字符显示为 。看起来Silex Forms无法处理带有未编码字符的选择字段。从来没有想过那两个连接的问题,但只是使用utf8_encode()方法来填充选择字段中使用的数组。在我的枝条模板中,我使用了
// create an array for the organiser combobox...
$OrganisersForCombo = array();
$numberOfOrganisers = count($AllOrganisers);
for($i = 0 ; $i <= $numberOfOrganisers-1 ; $i++){
$title = $AllOrganisers[$i]['title'];
$OrganisersForCombo[$i+1] = utf8_encode($title);
}
在我使用的Twig模板中
{{ data|convert_encoding('UTF-8', 'ASCII') }}
像这样:http://twig.sensiolabs.org/doc/filters/convert_encoding.html