我遇到了一些问题,方法更新不会改变我的数据。没有错误,但数据没有改变......有人可以告诉我这是什么问题吗?
https://habrastorage.org/webt/5a/45/78/5a4578c4da9d0166994452.jpeg https://habrastorage.org/webt/5a/45/78/5a4578dc690ea049532766.jpeg
答案 0 :(得分:2)
您是否创建了类似match
的相关模型?
那么这可以为您提供更新功能:
public function update(Request $request, $id)
{
$match = match::findOrFail($id);
$match->update($request->all());
return redirect()->route('match.show', $match->id);
}
答案 1 :(得分:0)
也不要忘记
class Match extends Model {
protected $fillable = ['name', 'alias'];
}