在我开始解释我的问题之前,我不得不说我读了很多主题 在这个网站上,他们的大部分问题都是关于
enctype
但我的表格 包括在内。
我可以上传我的照片at least in dropzone box view
我没有收到错误。但是一旦我点击保存按钮我就会得到
"Call to a member function getClientOriginalExtension() on null"
这是我的form
{{ Form::open(array('route' => 'dropzone.store', 'method' => 'post', 'files' => true, 'class' => 'dropzone', 'id' => 'my-awesome-dropzone')) }}
<div class="fallback">
<input name="file" type="file" multiple />
</div>
<input name="imageable_id" type="hidden" value="{{$product->id}}" />
<div class="clearfix"></div>
{{ Form::submit('Create Product', array('class' => 'btn btn-success')) }}
{{Form::close()}}
我的controller
public function dropzoneStore(Request $request)
{
$productID = $request->imageable_id;
$product = Product::findOrFail($productID);
// works
$file = $request->file('file');
$filename = 'product' . '-' . str_random(10) . '.' . $file->getClientOriginalExtension();
$filePath = public_path('images/');
$request->file('file')->move($filePath, $filename);
return Image::create([
'name' => $filename,
'imageable_id' => $productID,
]);
}
PS:错误来自$filename = 'product' . '-' . str_random(10) . '.' . $file->getClientOriginalExtension();
on success
中的结果console
:
{"name":"product-oQPyBfyZDK.jpg","imageable_id":"3","updated_at":"2018-02-07 16:30:17","created_at":"2018-02-07 16:30:17","id":13}
我将controller
代码放在if语句中:
if ($request->hasFile('file'))
{
$file = $request->file('file');
$filename = 'product' . '-' . str_random(10) . '.' . $file->getClientOriginalExtension();
$filePath = public_path('images/');
$request->file('file')->move($filePath, $filename);
}
现在我收到了这个错误:
未定义的变量:filename
位于:
return Image::create([
'name' => $filename,
'imageable_id' => $productID,
]);
任何想法?
答案 0 :(得分:0)
我把我的回程放在里面如果它正常工作,请查看我的更新部分以获取更多信息。