Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
603 views
in Technique[技术] by (71.8m points)

symfony - How to get file upload without a form

my controller receives post data. It's not from a Symfony generated form, but from an AngularJS custom form using FormData.

The normal parameters are received normally in the request parameter bag, but how do I get the file that is uploaded? Do I need to manually do the same that the form's handleRequest does?

My document is the same as the cookbook article.

So I need to get an UploadFile from the post request to call this method on the document entity:

public function setFile(UploadedFile $file = null)

How do I receive a upload manually in Symfony 2 (without using the form builder in any way)?

question from:https://stackoverflow.com/questions/18400216/how-to-get-file-upload-without-a-form

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The Request has a FileBag, similar to the ParameterBag

So I could get the file specified easily with:

$data = $this->getRequest()->request->all();
$file = $this->getRequest()->files->get('file');

and use the document as is from the cookbook:

$document = new Document();
$document->setFile($file);
$lead->setDocument($document);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...