search

Home  >  Q&A  >  body text

I would like to ask, the picture is uploaded successfully, but there is no picture in the corresponding folder in the background. What is the reason? (Deployed to server)

Excuse me, the picture was uploaded successfully, but there is no picture in the corresponding folder in the background. What is the reason? (Deployed to server)

槑槑槑槑1539 days ago1622

reply all(2)I'll reply

  • 槑槑

    槑槑2020-10-19 14:27:26

    public function upload(){    $file = request()->file('file');    if ($file) {        $info = $file->move('/public/upload/weixin');        if ($info) {            $file = str_replace('\\', '/', $info->getSaveName());            $res = ['errCode'=>0,'errMsg'=>'图片上传成功','file'=>$file];            return json($res);        }else {            return $this->errorJson(2, $file->getError());        }    }}

    reply
    0
  • 槑槑

    槑槑2020-10-19 14:26:01

    This is a code snippet

    reply
    0
  • Cancelreply