Laravel - 将文件上传到数据库
Posted
技术标签:
【中文标题】Laravel - 将文件上传到数据库【英文标题】:Laravel - Upload File to Database 【发布时间】:2017-04-18 18:49:50 【问题描述】:这些是我所拥有的:
名为lamanInformasi
的数据库表,其中包含名为isi
的字段。
这就是我想要的:
用户可以上传多个文档或图像文件,这些文件将被存储到数据库中。文件名将保存到isi
字段,文件本身将保存到名为propic
的文件夹中。用户也可以在网站上显示他们想要的文件并下载。
这就是我所做的:
我使用引导插件来输入文件。我用了这个source。我只是使用了js
和css
文件夹中的文件。这是我的代码:
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
<link href="../css/fileinput.css" media="all" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="../js/fileinput.js" type="text/javascript"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" type="text/javascript"></script>
</head>
<body>
<div class="container kv-main">
<div class="page-header">
<h1>Upload Files</h1>
</div>
<form enctype="multipart/form-data">
<div class="form-group">
<input id="file-5" class="file" type="file" multiple data-preview-file-type="any" data-upload-url="#">
</div>
</form>
</div>
</body>
<script>
$("#file-5").fileinput(
uploadUrl: " url('lamanInformasi') ",
uploadAsync: false,
previewFileIcon: '<i class="fa fa-file"></i>',
allowedPreviewTypes: 'image',
previewFileIconSettings:
'doc': '<i class="fa fa-file-word-o text-primary"></i>',
'xls': '<i class="fa fa-file-excel-o text-success"></i>',
'ppt': '<i class="fa fa-file-powerpoint-o text-danger"></i>',
'jpg': '<i class="fa fa-file-photo-o text-warning"></i>',
'pdf': '<i class="fa fa-file-pdf-o text-danger"></i>',
'zip': '<i class="fa fa-file-archive-o text-muted"></i>',
'htm': '<i class="fa fa-file-code-o text-info"></i>',
'txt': '<i class="fa fa-file-text-o text-info"></i>',
'mov': '<i class="fa fa-file-movie-o text-warning"></i>',
'mp3': '<i class="fa fa-file-audio-o text-warning"></i>',
,
previewFileExtSettings:
'doc': function(ext)
return ext.match(/(doc|docx)$/i);
,
'xls': function(ext)
return ext.match(/(xls|xlsx)$/i);
,
'ppt': function(ext)
return ext.match(/(ppt|pptx)$/i);
,
'zip': function(ext)
return ext.match(/(zip|rar|tar|gzip|gz|7z)$/i);
,
'htm': function(ext)
return ext.match(/(php|js|css|htm|html)$/i);
,
'txt': function(ext)
return ext.match(/(txt|ini|md)$/i);
,
'mov': function(ext)
return ext.match(/(avi|mpg|mkv|mov|mp4|3gp|webm|wmv)$/i);
,
'mp3': function(ext)
return ext.match(/(mp3|wav)$/i);
,
);
</script>
这是我的问题
如何将文件保存到数据库?如何在网站上显示文件?如何使文件变得可下载?谢谢
【问题讨论】:
【参考方案1】:您需要为文件输入字段命名,例如
<form enctype="multipart/form-data">
<div class="form-group">
<input id="file-5" name="image" class="file" type="file" multiple data-preview-file-type="any" data-upload-url="#">
</div>
</form>
然后在您的控制器方法中,您可以访问上传的文件并获取各种属性
**EDIT**
$destinationPath = storage_path().'/uploads/';
or
$destinationPath = public_path().'/uploads/';
//storage_path will give the fully qualified path to the storage folder
//public_path will give the fully qualified path to the public folder
//uploads - is the folder name where you want to store the user uploaded files, could be any name you prefer.
**EDIT end**
// Retrieving An Uploaded File
$file = Input::file('image');
// Determining If A File Was Uploaded
if (Input::hasFile('image'))
//
// Determining If An Uploaded File Is Valid
if (Input::file('image')->isValid())
//
// Moving An Uploaded File
Input::file('image')->move($destinationPath);
Input::file('image')->move($destinationPath, $fileName); //$filename is the name by which you want to store the file - change the name if required by by app.
// Getting Requested file path
$path = Input::file('image')->getRealPath();
// Getting Original name of the file
//**Edit** - gives the original filename as on uploading user's system. **Edit end**
$name = Input::file('image')->getClientOriginalName();
// Getting uploaded File extention
$extension = Input::file('image')->getClientOriginalExtension();
// Getting Size of the file
$size = Input::file('image')->getSize();
// Getting MIME Type of uploaded file
$mime = Input::file('image')->getMimeType();
然后,您可以通过 Model
对应于您的情况下的数据库表 lamanInformasi
或使用查询生成器将属性存储在您的数据库中,或者直接使用带有原始查询的数据库表。
查看 laravel 文档:Database - query builderEloquent - model approach
您可以使用Laravel's filesystem 从文件夹中检索文件并准备一个列表视图供用户查看可供下载的文件。
然后使用可以利用Laravel's Response Download 为用户提供下载功能。
希望这会有所帮助。
【讨论】:
那么,我不需要 我不建议任何有关引导文件输入插件的内容。$destinationPath
是您要存储上传文件的文件夹的路径。 $filename
是您要用来存储上传文件的名称。 $name
是上传用户系统时的原始文件名 - 请参阅我的回答中的 EDITs。通常我会创建一个模型 LamanInformasi
对应于数据库表,其中至少包含 - 名称、大小、mime-type 和 original-name 字段。在if
中的控制器方法中,我将获取与字段对应的所有属性并在此处执行数据库插入。
如果您需要分步教程之类的东西,请告诉我,我可能无法立即完成,但可以写一些内容并将链接翻转给您。
我觉得分步教程对我来说会更好理解
好的,给我一点时间,我会把步骤写下来,把链接翻给你。以上是关于Laravel - 将文件上传到数据库的主要内容,如果未能解决你的问题,请参考以下文章
无法使用 JQuery AJAX 将图像 + 文本数据上传到 Laravel
使用 Laravel 5.0 存储门面将元数据、标头(Expires、CacheControl)添加到上传到 Amazon S3 的文件中