Edit 我已经为它制定了路线: Route::get('/articles/{$articleId}/edit', 'ArticlesControll-6ren">
gpt4 book ai didi

Laravel 5.3 NotFoundHttpException 在 RouteCollection.php 第 161 行 :

转载 作者:行者123 更新时间:2023-12-05 07:46:32 31 4
gpt4 key购买 nike

我的页面上有一个链接:

<a class="btn btn-default" href="/articles/{{ $article->id }}/edit">Edit</a>

我已经为它制定了路线:

Route::get('/articles/{$articleId}/edit', 'ArticlesController@edit');

导致函数编辑:

public function edit($articleId)
{
dd($articleId);
$article = Article::where('id', $articleId)->first();
}

但是我得到一个错误

NotFoundHttpException in RouteCollection.php line 161:

不确定为什么会出现此错误。

最佳答案

错误:

Route::get('/articles/{articleId}/edit', 'ArticlesController@edit');

不带$的articleId

关于Laravel 5.3 NotFoundHttpException 在 RouteCollection.php 第 161 行 :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40686507/

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