前端界面
@H_301_2@上传表单,需要解决csrf验证问题:<form name="form名称" action="请求地址" method="请求类型" enctype ="multipart/form-data"> <input type="myfile" name=""> <input type="submit" value="提交"></form>
Laravel后端存储数据
public static function upload(){ $file = Input::file('myfile'); if($file ->isValid()) { // 检验一下上传的文件是否有效 $clientName = $file -> getClientOriginalName(); $tmpName = $file ->getFileName(); // 缓存到路径 $realPath = $file -> getRealPath(); // 获取后缀 $entension = $file -> getClientOriginalExtension(); $mimeTye = $file -> getMimeType(); // 用时间和4位随机数命名 $newName=date("YmdHis",time()).rand("1000","9999").".".$entension; // 移动缓存的文件到新路径并重命名 $path = $file -> move('excel',$newName); // 跳转到读取并导入excel的路由 return Redirect::to('/index/import?file='.$newName); } }@H_301_2@
原文链接:/laravel/480671.html