为了账号安全,请及时绑定邮箱和手机立即绑定

开发部署抱怨关闭

开发部署抱怨关闭

PHP
慕沐林林 2022-10-14 10:38:13
我跑了deb deploy,它到了这一点。  The command "/usr/bin/php ~/NetTube/releases/1/artisan optimize" failed.  Exit Code: 1 (General error)  Host Name: 68.183.20.108  ================  Configuration cache cleared!  Configuration cached successfully!  Route cache cleared!  In Route.php line 917:    Unable to prepare route [api/user] for serialization. Uses Closure.我已经研究过了,似乎我不能在路由中使用闭包,这很好。我只是不确定如何防止关闭。这是我的 web.php<?php/*|--------------------------------------------------------------------------| Web Routes|--------------------------------------------------------------------------|| Here is where you can register web routes for your application. These| routes are loaded by the RouteServiceProvider within a group which| contains the "web" middleware group. Now create something great!|*/// Route::get('/', function () {//     return view('welcome');// });Route::get('/','HomeController@index')->name('home');Auth::routes();// Route::get('/home', 'HomeController@index')->name('home');Route::group(['middleware' => ['auth']], function(){    Route::get('/upload','VideoUploadController@index');    Route::get('/channel/{channel}/edit','ChannelSettingsController@edit');    Route::put('/channel/{channel}/edit','ChannelSettingsController@update');});Route::get('/channel/{channel}','ChannelController@index');Route::get('/{channel}','ChannelController@index');我已经尝试将路线不在一个组中Route::get('/upload', [    'uses' => 'VideoUploadController@index',    'middleware' => ['auth'],]);Route::get('/channel/{channel}/edit', [    'uses' => 'ChannelSettingsController@edit',    'middleware' => ['auth'],]);Route::put('/channel/{channel}/edit', [    'uses' => 'ChannelSettingsController@update',    'middleware' => ['auth'],]);我正在运行 laravel 6.17.1。我希望我向任何可以提供帮助的人提供了足够的信息。
查看完整描述

1 回答

?
温温酱

TA贡献1752条经验 获得超4个赞

问题出在routes\api.php.

做类似的事情Route::middleware('auth:api')->get('/user', 'MyProfileController@index');。此路由需要绑定到控制器。如果您不需要该路线,请评论或删除它。


查看完整回答
反对 回复 2022-10-14
  • 1 回答
  • 0 关注
  • 86 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信