gpt4 book ai didi

Laravel 5.4 路由名称不起作用

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

在 web.php 上的路由中,我有以下行

Route::get('/', 'DashboardController@create')->name('dashboard');

在我的 DashboardController.php 中,我有一个 create 函数,其中包含以下行,就像我在 Laracast 教程 上看到的那样,但它不起作用。

return redirect()->dashboard();

我收到以下错误

(1/1) FatalThrowableError
Call to undefined method Illuminate\Routing\Redirector::dashboard()

我可能做错了什么?

最佳答案

你应该使用

return redirect()->route('dashboard');

这就是实现的方法。

访问Named Routes了解更多信息

关于Laravel 5.4 路由名称不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46721512/

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