Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/jsp/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
File upload symfony 4字符串,而不是文件类型为create的表单集合实体中的UploadedFile_File Upload_Symfony4 - Fatal编程技术网

File upload symfony 4字符串,而不是文件类型为create的表单集合实体中的UploadedFile

File upload symfony 4字符串,而不是文件类型为create的表单集合实体中的UploadedFile,file-upload,symfony4,File Upload,Symfony4,我有以下错误:“传递给App\Service\FileUploader::upload()的参数1必须是Symfony\Component\HttpFoundation\File\UploadedFile的实例,字符串为” 我应用了在中找到的解决方案,但它没有改变任何东西。很正常,这不是完全相同的错误。有人能帮我吗 我的目标是从公司屏幕将多个文档附加到公司 从昨天早上开始,我一直在努力解决这个问题。现在,是我离开键盘休息一两个小时的时候了 代码如下: 文档实体 namespace App\Ent

我有以下错误:“传递给App\Service\FileUploader::upload()的参数1必须是Symfony\Component\HttpFoundation\File\UploadedFile的实例,字符串为”

我应用了在中找到的解决方案,但它没有改变任何东西。很正常,这不是完全相同的错误。有人能帮我吗

我的目标是从公司屏幕将多个文档附加到公司

从昨天早上开始,我一直在努力解决这个问题。现在,是我离开键盘休息一两个小时的时候了

代码如下:

文档实体

namespace App\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Entity(repositoryClass="App\Repository\DocumentRepository")
 */
class Document
{
    /**
     * @ORM\Id()
     * @ORM\GeneratedValue()
     * @ORM\Column(type="integer")
     */
    private $id;

    /**
     * @ORM\Column(type="string", length=255)
     */
    private $fichier;

    /**
     * @var UploadedFile
     */
    private $file;

    // ...
}
namespace App\Entity;

use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Entity(repositoryClass="App\Repository\EntrepriseRepository")
 */
class Entreprise
{
    /**
     * @ORM\Id()
     * @ORM\GeneratedValue()
     * @ORM\Column(type="integer")
     */
    private $id;

    /**
     * @ORM\OneToMany(targetEntity="App\Entity\Document", mappedBy="entreprise", orphanRemoval=true, cascade={"persist"})
     */
    private $documents;

    // ...

    public function __construct()
    {
        $this->documents = new ArrayCollection();
    }

    // ...

    public function getDocuments()
    {
        return $this->documents;
    }

    public function addDocument(Document $document)
    {
        if (!$this->documents->contains($document)) {
            $this->documents[] = $document;
            //...
        }

        return $this;
    }

    public function removeDocument(Document $document)
    {
        if ($this->documents->contains($document)) {
            $this->documents->removeElement($document);
        }

        return $this;
    }
}
企业实体

namespace App\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Entity(repositoryClass="App\Repository\DocumentRepository")
 */
class Document
{
    /**
     * @ORM\Id()
     * @ORM\GeneratedValue()
     * @ORM\Column(type="integer")
     */
    private $id;

    /**
     * @ORM\Column(type="string", length=255)
     */
    private $fichier;

    /**
     * @var UploadedFile
     */
    private $file;

    // ...
}
namespace App\Entity;

use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Entity(repositoryClass="App\Repository\EntrepriseRepository")
 */
class Entreprise
{
    /**
     * @ORM\Id()
     * @ORM\GeneratedValue()
     * @ORM\Column(type="integer")
     */
    private $id;

    /**
     * @ORM\OneToMany(targetEntity="App\Entity\Document", mappedBy="entreprise", orphanRemoval=true, cascade={"persist"})
     */
    private $documents;

    // ...

    public function __construct()
    {
        $this->documents = new ArrayCollection();
    }

    // ...

    public function getDocuments()
    {
        return $this->documents;
    }

    public function addDocument(Document $document)
    {
        if (!$this->documents->contains($document)) {
            $this->documents[] = $document;
            //...
        }

        return $this;
    }

    public function removeDocument(Document $document)
    {
        if ($this->documents->contains($document)) {
            $this->documents->removeElement($document);
        }

        return $this;
    }
}
企业表单类型名称空间App\Form\Type

use App\Entity\Entreprise;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\Extension\Core\Type\IntegerType;
use Symfony\Component\Form\Extension\Core\Type\TextareaType;
use Symfony\Component\Form\Extension\Core\Type\CollectionType;
use Symfony\Component\Form\Extension\Core\Type\FileType;

use Symfony\Bridge\Doctrine\Form\Type\EntityType;

class EntrepriseType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('documents', CollectionType::class, [
                'entry_type' => DocumentType::class,
                'entry_options' => ['label' => false],
                'allow_add' => true,
                'by_reference' => false,
                'allow_delete' => true,
                ])
            // ...
            ;
    }

    public function configureOptions(OptionsResolver $resolver)
    {
        $resolver->setDefaults([
            'data_class' => Entreprise::class,
        ]);
    }
}
企业控制员

namespace App\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\File\Exception\FileException;
use Symfony\Component\Routing\Annotation\Route;
use Doctrine\Common\Persistence\ObjectManager;
use Symfony\Component\HttpFoundation\Request;

use App\Entity\Entreprise;
use App\Form\Type\EntrepriseType;
use App\Repository\EntrepriseRepository;
use App\Service\FileUploader;

class EntrepriseController extends AbstractController
{
    /**
     * @Route("/entreprise/{id}", name="entreprise_detail")
     * @Route("/entreprise/new", name="entreprise_new")
     */
    public function index(Entreprise $entreprise = null, Request $request, ObjectManager $manager, FileUploader $fileUploader)
    {
        if (!$entreprise) {
            $entreprise = new Entreprise();
        }

        $formDetail = $this->createForm(EntrepriseType::class, $entreprise);
        $formDetail->handleRequest($request);

        if ($formDetail->isSubmitted() && $formDetail->isValid()) {
            $this->setDefault($entreprise);

            // Téléchargement des nouveaux documents rattachés à l'entreprise
            $documents = $entreprise->getDocuments();
            foreach ($documents as $document) {
                if (!$document->getId()){
                    /** @var Symfony\Component\HttpFoundation\File\UploadedFile $file */
                    $file = $document->getFile();

                    $document->setFichier($fileUploader->upload($file));
                }
            }

            // Mise à jour de la base de données
            $manager->persist($entreprise);
            $manager->flush();

            return $this->redirectToRoute('entreprise_detail', ['id'=> $entreprise->getId()]);
        }

        return $this->render('entreprise/index.html.twig', [
            'formDetail' => $formDetail->createView(),
            'entreprise' => $entreprise,
        ]);
    }
    // ...
}

PS:如果我的英语不够好,很抱歉,但是如果你愿意,你可以用法语回答。

我也遇到了同样的问题,并通过删除实体中的getFile()和setFile()中的类型转换来解决。我想它位于您的文档实体中

寻找:

public function getFile(): ?string
{
    return $this->file;
}

public function setFile(string $file): self
{
    $this->file = $file;

    return $this;
}
并将其替换为

public function getFile()
{
    return $this->file;
}

public function setFile($file): self
{
    $this->file = $file;

    return $this;
}

这将确保file属性将具有UploadedFile类的实例,而不是调用同一类的uu-toString方法(由于类型转换为字符串)。

我遇到了同样的问题,并通过删除实体中getFile()和setFile()中的类型转换来解决它。我想它位于您的文档实体中

寻找:

public function getFile(): ?string
{
    return $this->file;
}

public function setFile(string $file): self
{
    $this->file = $file;

    return $this;
}
并将其替换为

public function getFile()
{
    return $this->file;
}

public function setFile($file): self
{
    $this->file = $file;

    return $this;
}
这将确保file属性将具有UploadedFile类的实例,而不是调用同一类的_toString方法(由于类型转换为字符串)