我是一名学生,正在研究我自己的Symfony2项目,现在几天我找不到解决问题的方法。
更新时间:03.09.2013
我有当前版本的symfony和sonata admin捆绑包,需要在我的管理员中使用多个图片上传的表单。
我提供的以下代码基于此安装文档:
http://sonata-project.org/bundles/admin/master/doc/reference/recipe_file_uploads.html
在我的情况下,我的包中有一个实体Projects(Pf \ Bundle \ BlogBundle \ Entity \ Projects.php)。在这个实体中,我有$ image1(相当于doc中的文件名),当然还有未映射的属性文件。所有字符串并按其必须配置。 (注意我在我的情况下使用image1而不是filename //文档)。
<?php
namespace Pf\Bundle\BlogBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Symfony\Component\Validator\Constraints as Assert;
/**
* Projects
*
* @ORM\Table()
* @ORM\Entity(repositoryClass="Pf\Bundle\BlogBundle\Entity\ProjectRepository")
* @ORM\HasLifecycleCallbacks()
*/
class Projects
{
const SERVER_PATH_TO_IMAGE_FOLDER = '/uploads/medias';
/**
* Unmapped property to handle file uploads
*/
private $file;
/**
* Sets file.
*
* @param UploadedFile $file
*/
public function setFile(UploadedFile $file = null)
{
$this->file = $file;
}
/**
* Get file.
*
* @return UploadedFile
*/
public function getFile()
{
return $this->file;
}
/**
* Manages the copying of the file to the relevant place on the server
*/
public function upload()
{
// the file property can be empty if the field is not required
if (null === $this->getFile()) {
return;
}
// we use the original file name here but you should
// sanitize it at least to avoid any security issues
// move takes the target directory and target filename as params
$this->getFile()->move(
Projects::SERVER_PATH_TO_IMAGE_FOLDER,
$this->getFile()->getClientOriginalName()
);
// set the path property to the filename where you've saved the file
$this->image1 = $this->getFile()->getClientOriginalName();
// clean up the file property as you won't need it anymore
$this->setFile(null);
}
/**
* Lifecycle callback to upload the file to the server
*/
public function lifecycleFileUpload() {
$this->upload();
}
/**
* Updates the hash value to force the preUpdate and postUpdate events to fire
*/
public function refreshUpdated() {
$this->setUpdated(date('Y-m-d H:i:s'));
}
/**
* @var integer
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="image1", type="string", length=100)
*/
private $image1;
//...
/**
* @var datetime
*
* @ORM\Column(name="updated", nullable=true)
*/
private $updated;
/**
* Set updated
*
* @param string $updated
* @return Projects
*/
public function setUpdated($updated)
{
$this->updated = $updated;
return $this;
}
/**
* Get updated
*
* @return string
*/
public function getUpdated()
{
return $this->updated;
}
}
我还有一个管理员控制器(Pf \ Bundle \ BlogBundle \ Admin \ ProjectsAdmin.php),其中我有以下表格(以“奏鸣曲管理方式”创建):
<?php
namespace Pf\Bundle\BlogBundle\Admin;
use Sonata\AdminBundle\Admin\Admin;
use Sonata\AdminBundle\Datagrid\ListMapper;
use Sonata\AdminBundle\Datagrid\DatagridMapper;
use Sonata\AdminBundle\Validator\ErrorElement;
use Sonata\AdminBundle\Form\FormMapper;
class ProjectsAdmin extends Admin
{
// setup the default sort column and order
protected $datagridValues = array(
'_sort_order' => 'DESC',
'_sort_by' => 'id'
);
protected function configureFormFields(FormMapper $formMapper)
{
$formMapper
->add('file', 'file', array('required' => false, 'data_class' => null))
->add('image2', 'text')
->add('image3', 'text')
->add('link', 'text')
->add('download_link', 'text')
->add('content1', 'text')
->add('content2', 'text')
->add('title', 'text')
->add('thumbnail', 'text')
;
}
public function prePersist($projects) {
$this->manageFileUpload($projects);
}
public function preUpdate($projects) {
$this->manageFileUpload($projects);
}
private function manageFileUpload($projects) {
if ($projects->getFile()) {
$projects->refreshUpdated();
}
}
protected function configureDatagridFilters(DatagridMapper $datagridMapper)
{
$datagridMapper
->add('title')
;
}
protected function configureListFields(ListMapper $listMapper)
{
$listMapper
->addIdentifier('title')
;
}
}
我遇到的问题很少:
如果我尝试创建一个新项目,则image1似乎为null 每次我尝试上传。我可以让它在实体中可以为空但是 那么我在数据库中根本没有任何网址
执行'INSERT INTO Projects ...时发生异常 完整性约束违规:1048列'image1'不能为空
通过编辑管理员中的现有项目,它似乎工作......几乎......我上传文件时没有任何错误但是我在数据库中获得了一个临时路径并且没有文件移动到好文件夹中。
看起来没有调用上传功能。我尝试调试但无法找到解决方案。
我已逐步遵循文档。唯一的区别是我不使用任何.yaml文件来配置我的实体..我必须吗?我在我的symfony上使用注释,我想在同一时间使用orm.yaml和注释是不对的......对吗?
非常欢迎任何帮助!
答案 0 :(得分:0)
“关于此主题的任何信息” 你看过http://symfony.com/doc/current/cookbook/form/form_collections.html吗?
您应该将图像表单嵌入到父表单中。例如,
->add('myImage','collection',array('type'=>new MyImageType()))
而不是放置多个image1,image2,...制作另一个表单类,例如。 MyImageType()并将其作为集合类型添加到现有表单中。
朝这个方向努力,祝你好运。