我正在尝试将输入数据从表单提取到数据库中以运行更新操作。然而,它们是一个错误,直接指向“$obj->update(request()->all());”行。错误是“在 null 上调用成员函数 update()”。我不太确定这个错误意味着什么,但我认为这意味着 request()->all() 为空。我想要的输出是在将用户输入更新到数据库后,用户将通过 return redirect('/p') 重定向到 pageManagement.blade.php; 然而,当前的输出只是一条错误消息,指出“Call to a member function update() on null”。
public function update($URI)
{
$data = request()->validate([
'title' => 'required',
'URI' => 'required|min:5|max:10',
'pageContent' => 'required'
]);
$obj = \App\Page::find($URI);
$obj->update(request()->all());
return redirect('/p');
}
这是我的模型 Page.php。
class Page extends Model
{
protected $fillable = ['title', 'URI', 'pageContent'];
}
这是我在 web.php 中的路线。
Route::patch('/page/{URI}','PageController@update');
这是我的表单,供用户输入输入数据。
<form action="/page/{{ $pageContent->URI }}" method="post">
@csrf
@method('PATCH')
<label for="title">Title:</label><br>
<input type="text" id="title" name="title" autocomplete="off" value="{{ $pageContent -> title
}}"><br>
@error('title') <p style="color: red">{{ $message }}</p> @enderror
<label for="URI">URI:</label><br>
<input type="text" id="URI" name="URI" autocomplete="off" value="{{ $pageContent -> URI }}">
@error('URI') {{ $message }}
@enderror 页面内容:
pageContent }}"> @error('pageContent') {{ $message }}
@enderror tinymce.init({ 选择器:'#pageContent' })
我的 GitHub 存储库附在下面,因为表单的问题格式看起来有点搞砸了......
https://github.com/xiaoheixi/wfams
感谢您阅读我的问题!:D
倚天杖
慕哥9229398
呼啦一阵风
当年话下