我正在尝试从表单获取输入并将其保存到数据库。该表格包括图片上传。
当我尝试下面的代码时(我知道那是全部错误),我得到“调用数组中的成员函数save()”。我不确定如何修改代码以使其正确
控制器
public function store(Request $request){
//
$input = $request->all();
$input->save();
if($file = $request->file('image')){
$name = $file->getClientOriginalName();
if($file->move('image', $name)){
$post = new Gallery();
$post->image = $name;
$post->save();
return redirect()->route('admin.gallery.index');
};
};
}
创建刀片
@extends('layouts.admin')
@section('content')
<h1>UPLOAD PICTURES</h1>
{!! Form::open(['method' =>'POST', 'action'=> 'GalleryController@store',
'files'=>true, 'enctype'=>'multipart/form-data']) !!}
<div class="form-group">
{!! Form::label('Picture:') !!}
{!! Form::file('image', null, ['class'=>'form-control'])!!}
</div>
<div class="form-group">
{!! Form::label('species_id', 'Species:') !!}
{!! Form::select('species_id', [''=>'Choose Species'] + $species, null,
['class'=>'form-control'])!!}
</div>
<div class="form-group">
{!! Form::label('name', 'Image Title:') !!}
{!! Form::text('name', null, ['class'=>'form-control'])!!}
</div>
<div class="form-group">
{!! Form::label('patreon', 'Patreon Image?:') !!}
{!! Form::select('patreon', array(1 =>'Yes', 0=>'No'), 0,['class'=>'form-control'])!!}
</div>
<div class="form-group">
{!! Form::submit('Upload Image', ['class'=>'btn btn-primary']) !!}
@endsection
模型
namespace App;
use Illuminate\Database\Eloquent\Model;
class Gallery extends Model
{
//
protected $fillable = [
'image',
'species_id',
'name',
'tag',
'patreon'
];
public function species(){
return $this->belongsTo('App\Species');
}
}
答案 0 :(得分:0)
整个问题出在此代码块之内。
$input = $request->all();
$input->save();
$request->all();
返回来自请求的输入数组。现在$input
是一个数组,我不知道为什么要尝试在数组上调用->save();
,但是如果删除该行,它将起作用。
答案 1 :(得分:0)
它说您有对象,但在数组中
$foo =
[ 0 => yourObject ]
如果只有一件,那就做
$foo = end($foo)
如果结果数组中有多个项目,请通过foreach循环对其进行迭代