gpt4 book ai didi

php - 在 Laravel 中使用 id 重定向

转载 作者:行者123 更新时间:2023-12-04 14:09:29 27 4
gpt4 key购买 nike

尝试重定向到路由:

return Redirect::route('job_view', array('id' =>$id))
->with('succes','Alread Apply for this post');

Error :InvalidArgumentException in UrlGenerator.php line 314 Route [job_view] not defined.

路由定义在Web.php

Route::get('/job_view/{id}','jobseekerController@job_view');

最佳答案

在您的 Web 定义中,您定义了 Id,但是当您调用重定向到 job_view 时,您没有向其中添加 id。改为这样做

return redirect()->to('job_view/'.$id);

关于php - 在 Laravel 中使用 id 重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45189874/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com