suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Beim Datei-Upload-Vorgang in Laravel5.1 ist ein Fehler aufgetreten


Das Folgende ist der Code (ich würde gerne fragen, wie man ihn ändert. Ich bin ein Anfänger, vielen Dank im Voraus!):
<?php

Namespace AppHttpControllers;

verwenden Sie IlluminateHttpRequest;

AppHttpRequests verwenden;

class RequestController erweitert Controller
{

public function getFileupload(){
    $postUrl='/laravelFirst/public/index.php/request/fileupload';
    $csrf_field=csrf_field();
    $html=<<<FILE
    <form action="$postUrl" method="post" enctype="multipart/form-data">
    $csrf_field
    <input type="file" name="file"><br/>
    <input type="submit" value="提交">
    </form>

DATEI;

    return $html;          
}
public function postFileupload(Request $request){
    if(!$request->hasFile('file')){
        exit('上传文件为空!');
    }
    $file=$request->file('file');
    if(!$file->isValid()){
        exit('上传文件出错!');
    }
    $destPath = realpath(public_path('images'));
    if(!file_exists($destPath)){
    mkdir($destPath,0755,true);
}
    $filename=$file->getClientOriginalName();
    if(!$file->move($destPath,$filename)){
        exit('保存文件失败!');
    }
    exit('文件上传成功!');
}

}

为情所困为情所困2739 Tage vor647

Antworte allen(2)Ich werde antworten

  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-16 16:55:51

    你打印那个destPath看看

    Antwort
    0
  • 習慣沉默

    習慣沉默2017-05-16 16:55:51

    laravel上传文件还是使用Storage这个Facade吧,他可以自己处理文件夹创建之类的问题

    Antwort
    0
  • StornierenAntwort