在Sonata Admin中,我想在sonata_type_collection中使用上传和预览图片文件。
在我的Admin / ItemAdmin.php中:
class ItemAdmin extends Admin
{
protected function configureFormFields(FormMapper $formMapper)
{
$formMapper
->add('title')
->with('Photos')
->add('pictures', 'sonata_type_collection', array(
'label' => 'Pictures',
'by_reference' => false,
'required' => false,
), array(
'edit' => 'inline',
'inline' => 'table',
'sortable' => 'id'
))
->end()
;
}
在我的Admin / ItemPictureAdmin.php中:
class ItemPictureAdmin extends Admin {
protected function configureFormFields(FormMapper $formMapper) {
$obj = $this->getSubject();
$formBuilder = $formMapper->getFormBuilder();
if(is_object($obj) && $obj->getPicture())
{
$formMapper
->add('picturePreview', 'image_preview', array(
'required' => false,
'property_path' => false,
'upload_dir' => '/uploads/picture/',
'file_name' => $obj->getPicture()
));
}
$formMapper->add('pictureFile', 'file', array('label' => 'Pic'));
}
“image_preview”类型是我用一个简单的模板树枝创建的新类型,用于显示图片。
预览:http://i.stack.imgur.com/AC0ih.png
问题1:我在数据库中记录了两张不同图片文件的图片,但在列表中,它只显示了第一张图片。
问题2:无法更新图片......我必须删除记录并再次上传新文件。
答案 0 :(得分:0)
我自己碰到了问题1。我尝试了所有可能的解决方案,但没有任何效果。我尝试了一些解决方案,其中一个很好
我做了什么:
我在会话中保存了子实体的索引(在你的案例中是ItemPictureAdmin),当我需要一个实体时,我会从会话中获取索引并从父级列表中获取该索引的元素实体。
首先我保存在会话索引0和ItemPictureAdmin中我访问他的ItemPictureAdmin的父列表,索引为0
此解决方案是对caponica解决方案here
的改编答案 1 :(得分:0)
我有同样的问题,我可以通过“自定义表单类型扩展”执行此操作,其中的文档在“http://symfony.com/doc/current/cookbook/form/create_form_type_extension.html”链接上提供。
这是完美的解决方案..