当前位置:  开发笔记 > 运维 > 正文

未定义的变量:请求

如何解决《未定义的变量:请求》经验,为你挑选了2个好方法。

当我尝试上传文件时显示错误:

未定义的变量:请求

这是我使用它的地方:UploadController:

if($request->hasFile('file')){
        $file = $request ->file('file');
        $fileName = $file->getClientOriginalName();
        $destinationPath = config('app.fileDesinationPath').'/'.$fileName;
        $uploads = Storage::put($destinationPath,file_get_contents($file->getRealPath()));

    }
    return redirect()->to('/upload');

这有什么不对?



1> aceraven777..:

Request $request在函数中添加参数.例:

public function yourFunction(Request $request)
{
    if($request->hasFile('file')){
        $file = $request ->file('file');
        $fileName = $file->getClientOriginalName();
        $destinationPath = config('app.fileDesinationPath').'/'.$fileName;
        $uploads = Storage::put($destinationPath,file_get_contents($file->getRealPath()));

    }
    return redirect()->to('/upload');
}

请仔细阅读文档:http://laravel.com/docs

您还可以在这里观看Laravel教程:http://laracasts.com



2> Amit Gupta..:

您还可以将request()辅助功能用作:

if(request()->hasFile('file')) {
    ...
}

request函数返回当前请求实例。


这是正确的答案,特别是。如果要访问刀片服务器的请求
推荐阅读
TXCWB_523
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有