gpt4 book ai didi

laravel-5 - Laravel 5.5 给出一条错误消息说方法没有 Action

转载 作者:行者123 更新时间:2023-12-02 02:58:00 25 4
gpt4 key购买 nike

我在 web.php 中有一个命名路由:

Route::get('editFact/{id}'.'FactsController@edit')->name('editFact');

在 Controller 中我有以下内容:

public function edit($id) 
{
$fc = Item::find($id);
$ct = Category::orderBy('title')->get();
return view('admin.facts.edit',['fc' => $fc, 'ct' => $ct]);
}

我已经在使用区域定义了这两个模型。

use App\Item; 
use App\Category;

View 确实存在,但当我尝试访问它时,我得到:

[admin/editFact/{id}FactsController@edit] 的路由没有任何操作。

我在这个 Controller 中有一个工作正常的索引函数:

public function index() 
{
return view('admin.facts.index');
}

有什么想法吗?谢谢!

最佳答案

您在 Route::get 中有一个语法错误。编辑代码

Route::get('editFact/{id}'.'FactsController@edit')->name('editFact');

Route::get('editFact/{id}','FactsController@edit')->name('editFact');

关于laravel-5 - Laravel 5.5 给出一条错误消息说方法没有 Action ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48149499/

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