gpt4 book ai didi

lumen - 调用未定义的方法 Laravel\Lumen\Routing\Router::where()

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

如何在 Lumen 中使用 where 方法

Route::get('/talent/{id}', 'TalentController@talent')->where('id', '[0-9]+');

给我这个错误:

(1/1) FatalThrowableError
Call to undefined method Laravel\Lumen\Routing\Router::where()

使用php 7"laravel/lumen-framework": "5.5.*"

最佳答案

Lumen 使用与 Laravel 不同的路由器。

对于 Lumen,正则表达式约束直接位于路由参数定义中。您的代码将类似于:

$router->get('/talent/{id:[0-9]+}', 'TalentController@talent');

您可以在the documentation here中阅读有关流明路由和约束的更多信息。 .

关于lumen - 调用未定义的方法 Laravel\Lumen\Routing\Router::where(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48655597/

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