我正在使用Inertia
和Laravel
。我在web.php
. 当我将数据发送到服务器时,我收到错误 405 告诉我MethodNotAllowedHttpException
,the PUT methods is not allowed for this route
但数据已在数据库中成功更新;
in question componet.vue
update(){
this.$inertia.put(`questions/${this.id}`, this.question, {
onSuccess: () => {
//do some stuffs
})
}
in QuestionsController.php
public function update(AskQuestionRequest $request, Question $question)
{
$question->update($request->only(['title', 'body']));
return redirect()->back()->with('successMsg', 'Your Question has been updated successfully');
}