我这边将代码部署到linux上,路由这边开始报错了,在本地window下没有有问题
这里粘代码
route.php 这么写的
你都不看手册嘛?你的路由你看看手册你写的对吗?
就是路由对应的方法找不到,win可以的话,大小写的问题?
是的,大小写问题
app\controller\System::class . '@data'. 大小写问题,使用::class的方式,写的时候就能发现类不存在。 当然,你的编辑器有点简陋,发现不了。
app\controller\System::class . '@data'
::class
Route::any('/testclass', [app\controller\IndexController::class, 'test']);
route.php 这么写的
你都不看手册嘛?你的路由你看看手册你写的对吗?
就是路由对应的方法找不到,win可以的话,大小写的问题?
是的,大小写问题
app\controller\System::class . '@data'
.大小写问题,使用
::class
的方式,写的时候就能发现类不存在。当然,你的编辑器有点简陋,发现不了。
Route::any('/testclass', [app\controller\IndexController::class, 'test']);