标签:href return get app ref art 控制 arp dex
Route::get(‘Index/{action}‘, function(App\Http\Controllers\IndexController $index, $action){ return $index->$action(); });
https://xueyuanjun.com/post/5866.html
注册一个可以响应任何HTTP动作的路由
代码如下:
Route::any(‘foo‘, function() { return ‘Hello World‘; });
https://blog.csdn.net/lxw1844912514/article/details/100029390
标签:href return get app ref art 控制 arp dex
原文地址:https://www.cnblogs.com/cxscode/p/13371191.html