操作过程是这样:
执行php artisan make:controller HelloController的时候报错,因为这时候我在route/web.php里面有个路由没写分号
D:\phpstudy_pro\WWW\learn.laravel.org>php artisan make:controller HelloController
Symfony\Component\Debug\Exception\FatalThrowableError : syntax error, unexpected end of file
at D:\phpstudy_pro\WWW\learn.laravel.org\routes\web.php:19
15| return view('welcome');
16| });
17|
18| Route::get('/hello', '')
在处理完web.php的错误之后,再重新执行
D:\phpstudy_pro\WWW\learn.laravel.org>php artisan make:controller HelloController
Controller created successfully.
之后就是写HelloController中的hello方法,配置Route,都是按照视频上的来操作,结果就报错了:
Symfony\Component\Debug\Exception\FatalErrorException
Illuminate\Routing\RouteFileRegistrar::register(): Failed opening required 'D:\phpstudy_pro\WWW\learn.laravel.org\routes/' (include_path='.;C:\php\pear')
=================
后来我重新创建了个laravel工程,再按照视频执行一遍,就不会报错。
所以这个问题很奇怪。
2020-01-17 15:29:02
这个问题是可以重现的,可以按照我上述说的步骤操作一下。
2020-01-17 15:49:46
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星