9

https://github.com/dustin10/VichUploaderBundle/blob/master/Resources/doc/usage.mdの指示に従いました が、 User エンティティの保存中に次のエラーが発生しました:

Expected argument of type "AppBundle\Entity\File", "Symfony\Component\HttpFoundation\File\UploadedFile" given

コードは次のとおりです。

/**
 * @ORM\Entity
 * @ORM\Table(name="symfony_demo_user")
 * @Vich\Uploadable
 */
class User extends BaseUser implements UserInterface 
{
    /**
     * @Vich\UploadableField(mapping="avatar_image", fileNameProperty="avatarName")
     * 
     * @var File
     */
    private $avatarFile;

    /**
     * @ORM\Column(type="string", length=255, nullable=true, options={"default": 0})
     *
     * @var string
     */
    private $avatarName;    

    /**
     * @ORM\Column(type="datetime")
     *
     * @var \DateTime
     */
    private $updatedAt;
/**
 * @param File|\Symfony\Component\HttpFoundation\File\UploadedFile $image
 *
 * @return User
 */
public function setAvatarFile(File $image = null)
{
    $this->avatarFile = $image;

    if ($image) {
        // It is required that at least one field changes if you are using doctrine
        // otherwise the event listeners won't be called and the file is lost
        $this->updatedAt = new \DateTime('now');
    }

    return $this;
}

/**
 * @return File
 */
public function getAvatarFile()
{
    return $this->avatarFile;
}   

私のフォーム:

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Vich\UploaderBundle\Form\Type\VichImageType;

class ProfileFormType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        # no translation_domain means - app translations from ~/app/translations/
        $builder
            ->add('avatarFile', 'vich_image');
    }

そこに問題があることを知っていますか?

4

1 に答える 1

17

setAvatarFileクラスのアイテムを待っているとメソッドで言いますFile。このクラスの名前空間に使用を設定していないため、クラスを探しますAppBundle\Entity\File

use Symfony\Component\HttpFoundation\File\Fileファイルの先頭にa を追加します。

于 2016-06-26T17:03:49.653 に答える