我目前正在开展一个小型个人项目,学习如何操纵Symfony和Sonata,我发现自己遇到了一个小问题。我已经将我的一个变量限制在"模板" in" configureListFields"但是我无法将其提交给#34; editable"。如果没有"可编辑的话,我可以在没有其他但不能同时进行的情况下进行。我向你展示了一些错误。
列表:
$listMapper->add('status', 'string', array(
'template' => 'WebBundle:Default:list_client.html.twig',
'label'=> 'Status'))
表格:
$formMapper->add('Status', 'choice', array(
'choices' => array(
'Client' => 'Client',
'Ex-Client' => 'Ex-Client',
'Prospect' => 'Prospect')))
模板:
{% extends 'SonataAdminBundle:CRUD:base_list_field.html.twig' %}
{% block field %}
<div>
<p class="ClientStatus {% if object.Status == 'Ex-Client' %}
label label-danger
{% elseif object.Status == 'Client' %}
label label-success
{% else %}
label label-info
{% endif %}" >
{{ object.Status }}
</p>
</div>
{% endblock %}
使用该配置查看:
$listMapper->add('status', 'choice', array(
'choices'=>array(
"Client"=>"Client",
"New Client"=>"New Client",
"Ex-Client"=>"Ex Client"
),
'label'=> 'Status',
'editable'=>true))
查看:
->add('status', 'choice', array(
'choices'=>array(
"Client"=>"Client",
"New Client"=>"New Client",
"Ex-Client"=>"Ex Client"
),
'template' => 'WebBundle:Default:list_client.html.twig',
'label'=> 'Status',
'editable'=>true))
观点:
所以&#34;模板&#34>之间似乎存在冲突。和&#34;可编辑的&#34;关于如何处理这个问题的意见? 非常感谢。
答案 0 :(得分:0)
查看随Sonata资源提供的list_choice模板。
# SonataAdminBundle/Resources/views/CRUD/list_choice.html.twig
{% set is_editable =
field_description.options.editable is defined and
field_description.options.editable and
admin.hasAccess('edit', object)
%}
{% set x_editable_type = field_description.type|sonata_xeditable_type %}
{% if is_editable and x_editable_type %}
{% block field_span_attributes %}
{% spaceless %}
{{ parent() }}
data-source="{{ field_description|sonata_xeditable_choices|json_encode }}"
{% endspaceless %}
{% endblock %}
{% endif %}
他们会检查该字段是否可编辑,并将data-source
属性添加到父base_list_field模板部分的field_span_attributes
块中:
<span {% block field_span_attributes %}class="x-editable"
data-type="{{ xEditableType }}"
data-value="{{ data_value }}"
data-title="{{ field_description.label|trans({}, field_description.translationDomain) }}"
data-pk="{{ admin.id(object) }}"
data-url="{{ url }}" {% endblock %}>
{{ block('field') }}
</span>
因此,请尝试在自定义模板中添加数据源。
答案 1 :(得分:0)
这个答案对我有用:
如果您检查网站选择的HTML代码,则可以检测是否缺少任何代码,例如下面的代码是生成没有&#39;模板的网页的代码。配置选项:
<span class="x-editable label-info editable editable-click editable-open" data-type="select"
data-value="Rechazado"
data-title="Estado"
data-pk="4"
data-url="/eventos/web/app_dev.php/admin/core/set-object-field-value?context=list&field=estado&objectId=4&code=admin.evento"
data-source="[{"value":"Aprobado","text":"1"},{"value":"Pendiente","text":"Pendiente"},{"value":"Rechazado","text":"Rechazado"}]" data-original-title="" title="" aria-describedby="popover786605">
</span>
&#13;
现在检查&#39;模板&#39;生成的代码。选项已设置
<span class="x-editable label label-danger editable editable-click"
data-type="select"
data-value="Rechazado"
data-title="Estado"
data-pk="4"
data-url="/eventos/web/app_dev.php/admin/core/set-object-field-value?context=list&field=estado&objectId=4&code=admin.evento">
</span>
&#13;
数据源字段丢失,这就是崩溃的原因。
您的模板上的解决方案很简单(不是最好的,但它是一些东西),使用您选择的数据添加数据源。