我有一个 Laravel / InertiaJS 应用程序,我可以在其中从 Vue 前端执行 Axios 请求来更新某些模型。就我而言,我有一个提案显示页面,其中还显示与该提案相关的任务。
我有一个 Vue 子组件,它执行 Axios 调用来更新特定任务:
const moveToNextStatus = (status) => {
console.log('run')
// update the status of the task using axios
axios.patch(`/data/tasks/${props.task.id}`, {
status: status
})
}
这是它所指的路线:
Route::patch('/data/tasks/{task}', [\App\Http\Controllers\TaskController::class, 'update'])->name('tasks.update');
然后,在我的 Laravel TaskController 中,我的更新方法如下所示:
public function update (Request $request, Task $task)
{
$task->update($request->all());
return redirect()->back();
}
由于某种原因,当 Axios 对 PATCH /tasks/{task} 的请求触发时,它还会调用路由 PATCH /proposals/{proposal} 并尝试更新失败的提案。< /p>
也许这与从子组件重定向有关?有人可以帮我吗?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
Inertia 的文档指出;
您可以在此处的文档中找到此内容:https://inertiajs.com/redirects
它还希望您使用非标准帮助程序进行重定向,例如;
return to_route('users.index');我不同意它,但事实就是如此 - 当页面根本没有重定向时使用 303 似乎违反了网络状态代码标准。