我正在使用带有drop-zone插件的Laravel Image Intervention包。当然,我已正确安装它。当我尝试上传图像然后提交表格时,它显示以下错误信息
"在非对象上调用成员函数getClientOriginalName()"
即使此错误消息显示我是否将此输入字段表单空白。在这种情况下,我不希望向我显示任何错误消息,因为提交表单不是必填字段但是确实如此。
我有两个问题。
1)我的代码出了什么问题
2)现在我正在尝试上传单张图片。对于多个图像,我想将文件信息存储为数组。在那种情况下,我的代码在控制器中会是什么。
这是我的实时链接,您可以在这里查看
http://thetoppinghouse.com/laravel/public/admin/index/create
http://laravel.io/bin/Jxmzo
这是我的控制器代码
public function store()
{
$validator = Validator::make($data = Input::all(), Index::$rules);
if ($validator->fails())
{
return Redirect::back()->withErrors($validator)->withInput();
}
if ($validator->passes()) {
$index = new Index;
$index->name = Input::get('name');
$index->category_ID = Input::get('category_ID');
$files = Input::file('files');
$filename = date('Y-m-d-H:i:s')."-".$files->getClientOriginalName();
$path = public_path('img/index/' . $filename);
Image::make($files->getRealPath())->save($path);
$index->files = 'img/index/'.$filename;
$index->save();
return Redirect::route('admin.index.index')->with('message', 'Index Created');
}
}
//表格代码
<ul class="post-list">
<li>
{{ Form::label('parent_ID', 'Category') }}
{{ Form::select('parent_ID',Category::lists('category_name','id'),Input::old('category'),array('class' => 'form-control input-sm', 'id' => 'parent_ID')) }}
</li>
<li>
{{ Form::label('name', 'Index Name') }}
{{ Form::text('name', null, array( 'class' => 'form-control input-sm', 'placeholder' => 'Name' )) }}
{{ $errors->first('name', '<p class="error">:message</p>' ) }}
</li>
<li>
{{ Form::label('image', 'Cover Image') }}
</li>
<div class="dropzone" id="DropzoneArea">
<div class="fallback">
<input name="files" type="file" id="files" multiple>
</div>
</div>
{{ Form::submit('Save') }}
</li>
</ul
答案 0 :(得分:1)
使用dropzone处理文件上传,如
var fileDropzone = new Dropzone("div#DropzoneArea", {
url: '/upload', // customize the URL
addRemoveLinks: false
});
然后,当您上传某些内容时,上传操作将会调用,您可以在该操作中处理文件上传。然后你可以返回上传文件的服务器文件路径。
fileDropzone.on("success", function (file,data,e) {
var hiddenInput = $('<input name="filePath" type="hidden value=" '+ data.path +' "">');
// and append the hiddenInput in to the form
});
然后在成功上传后,您可以在输入hidden field
中设置上传文件的服务器路径。提交表单后,您可以通过隐藏字段值获取文件。
当您提交表单时,将上传的文件另存为
$filePath = Input::input('filePath');
$file = File::get($filePath);