【发布时间】:2011-08-25 20:22:33
【问题描述】:
我想用 Symfony 2 和 Doctrine 2 制作一个简单的文件上传器。 我已经按照本教程进行操作: http://symfony.com/doc/current/cookbook/doctrine/file_uploads.html 和这个 : http://leny-bernard.com/fr/afficher/article/creer-un-site-facilement-en-symfony2-partie-4
这是我的实体类:
namespace Luna\KBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use Symfony\Component\HttpFoundation\File\File;
/**
* Luna\KBundle\Entity\Media
*
* @ORM\Entity
*/
class Media
{
/**
* @var integer $id
*/
private $id;
/**
* @var string $title
*/
private $title;
/**
* @var text $description
*/
private $description;
/**
* @var string $author
*/
private $author;
/**
* @var string $source
*/
private $source;
/**
* @Assert\File(maxSize="6000000")
*/
private $paths;
/**
* @var string $type
*/
private $type;
/**
* @var Luna\KBundle\Entity\object
*/
private $idobject;
/***********************************METHODS***********************************/
/**
* Set idobject
*
* @param Luna\KBundle\Entity\Object $idobject
*/
public function setIdobject(\Luna\KBundle\Entity\object $idobject)
{
$this->idObject = $idObject;
}
/**
* Get idObject
*
* @return Luna\KBundle\Entity\Object
*/
public function getIdObject()
{
return $this->idObject;
}
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set title
*
* @param string $title
*/
public function setTitle($title)
{
$this->title = $title;
}
/**
* Get title
*
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* Set description
*
* @param text $description
*/
public function setDescription($description)
{
$this->description = $description;
}
/**
* Get description
*
* @return text
*/
public function getDescription()
{
return $this->description;
}
/**
* Set author
*
* @param string $author
*/
public function setAuthor($author)
{
$this->author = $author;
}
/**
* Get author
*
* @return string
*/
public function getAuthor()
{
return $this->author;
}
/**
* Set source
*
* @param string $source
*/
public function setSource($source)
{
$this->source = $source;
}
/**
* Get source
*
* @return string
*/
public function getSource()
{
return $this->source;
}
/**
* Set paths
*
* @param string $paths
*/
public function setPaths($paths)
{
$this->paths = $paths;
}
/**
* Get paths
*
* @return string
*/
public function getPaths()
{
return $this->paths;
}
/**
* Set type
*
* @param string $type
*/
public function setType($type)
{
$this->type = $type;
}
/**
* Get type
*
* @return string
*/
public function getType()
{
return $this->type;
}
public function getAbsolutePath()
{
return null === $this->paths ? null : $this->getUploadRootDir().'/'.$this->paths;
}
public function getWebPath()
{
return null === $this->paths ? null : $this->getUploadDir().'/'.$this->paths;
}
protected function getUploadRootDir()
{
// the absolute directory path where uploaded documents should be saved
return __DIR__.'/../../../../web/'.$this->getUploadDir();
}
protected function getUploadDir()
{
// get rid of the __DIR__ so it doesn't screw when displaying uploaded doc/image in the view.
return 'uploads/mediaobject';
}
}
事实是@Assert\File(maxSize="6000000") 不起作用:我没有文件上传器,只有一个简单的文本字段?!
我怎样才能使它正常工作?
问候伙计们:)
编辑:这是我的表单生成器
namespace Luna\KBundle\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilder;
class MediaInit extends AbstractType
{
public function buildForm(FormBuilder $builder, array $options)
{
$builder
->add('title')
->add('description')
->add('author')
->add('source')
->add('paths')
->add('type')
->add('idObject')
;
}
}
这是我的树枝模板:
{% extends '::layout.html.twig' %}
{####################################### MEDIA INIT###########################}
{% block content %}
<h1>Creer un Media</h1>
Entrez les informations de votre media ici
<form action="{{ path('media_init') }}" method="post" {{ form_enctype(form) }}>
{{ form_widget(form) }}
<p>
<button type="submit">Creer</button>
</p>
</form>
{% endblock %}
【问题讨论】:
-
也发布您的表单生成器。你是如何渲染表格的?手动还是使用 form_widgets?
-
更新:我已经发布了我的表单生成器和我的 Twig 模板。事实上,我正在使用 form_widget。 (Hvala Nemanja :D)
-
如何在 buildForm(FormBuilder $builder, array $options) 调用之前初始化 $builder 变量?
标签: file-upload doctrine-orm symfony assert