码迷,mamicode.com
首页 > Web开发 > 详细

laravel框架图片上传

时间:2019-10-27 20:27:32      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:pass   pre   his   original   tor   name   table   admin   user   

function  add(Da  $req){

$file= $req->file("file"); //接前台值
$tu=$file->getClientOriginalName(); //图片路径
$data=$file->move("image",$tu);
$all= $req->all(); 接收所有的值
$all[‘file‘]=$data;

$model=new User();
$res=$model->adddo($all);
if ($res){
return redirect()->route("admin.login")->with("mes","请重新登录");
}

}


//model层
class User extends Author
{
public $table="Users";
public $timestamps=false;
function adddo($data){
$this->name=$data[‘name‘];
$this->email=$data[‘email‘];
$this->password=bcrypt($data[‘password‘]);
$this->file=$data[‘file‘];
return $this->save();
}

laravel框架图片上传

标签:pass   pre   his   original   tor   name   table   admin   user   

原文地址:https://www.cnblogs.com/azzy/p/11748802.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!