我正在研究 Symfony 2.1,我将图像添加到默认的 fosUserBundle 用户实体。
在我的实体之上,我有这个:
use FOS\UserBundle\Entity\User as BaseUser;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use Symfony\Component\HttpFoundation\File\UploadedFile;
/**
* @ORM\Entity
* @ORM\HasLifecycleCallbacks
* @ORM\Table(name="users")
*/
class User extends BaseUser
接下来是相关领域:
/**
* @ORM\Column(nullable=true)
* @Assert\File(maxSize="5M", mimeTypes={"image/gif", "image/jpeg", "image/png"})
*/
protected $promo;
我得到的错误是
The mime type of the file is invalid (""). Allowed mime types are "image/gif", "image/jpeg", "image/png".
。奇怪的是,当我 var_dump
$this->promo->getClientMimeType()
我整齐地得到 image/jpeg
...那么出于某种原因,验证器正在寻找错误的位置?
有没有人知道可能导致这种情况的原因?
最佳答案
事实证明,在 php.ini 中安装 php_fileinfo
扩展至关重要。
没有它,验证器可以 nog 验证您的文件,因为它使用 guessExtion()
中的 uploadedFile
方法。
这解决了我的问题。但是,在共享主机上这可能会导致麻烦,因为您可能无法启用 php_fileinfo。
关于Symfony 2.1 验证器看不到 MIME 类型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12896222/