gpt4 book ai didi

php - Laravel, Dropzone "Trying to get property of non-object"文件上传错误

转载 作者:搜寻专家 更新时间:2023-10-31 20:41:41 24 4
gpt4 key购买 nike

我正在做一个需要上传文件的项目。我已经实现了 Dropzone.js和 Laravel 框架。我确定我已正确设置所有内容,但是当我将文件拖放到 dropzone 并且它们完成上传时,我收到此错误

{"error":{"type":"Symfony\\Component\\Debug\\Exception\\FatalErrorException","message":"Call to a member function getRealPath() on a non-object","file":"C:\\wamp\\www\\local\\app\\controllers\\AssetsController.php","line":119}}

这是我的路线

Route::post('create/album','AssetsController@album');

这是我的 Controller

$path = "assets";
$fileee = Input::file('file');
Image::make($fileee->getRealPath())->resize(500, null, true)->save($path);

当我检查 laravel 是否有文件时,它返回 NULL 但是当我使用 var_dump() 和 Input::file() 时,我得到了一个文件相关数据数组,我搜索了网络但似乎找不到任何东西。

提前致谢!

最佳答案

我终于想出了如何解决这个问题,这就是解决问题的方法这是我更改后的 Controller

    $fileee = Input::file('file');
Image::make($fileee[0]->getRealPath())->resize(540, null, true)->save('assets/example.png');

如果有人问这些图像处理方法是从哪里来的,这是 iam 使用的类 http://intervention.olivervogel.net/image/getting_started/laravel

希望这对 future 的人有帮助

关于php - Laravel, Dropzone "Trying to get property of non-object"文件上传错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20408505/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com