[记录]TP5.1路由报错Non-static method think\Route::get() should not be called statically解决办法

TP5.1 和 TP5的版本 目录结构不太一样
TP5.1的路由文件是独立的一个文件夹
在使用的时候写入以下代码:

use think\Route;
Route::get('/',function (){
    return 'hello world';
});

会报以下错误:

ErrorException in route.php line 15
Non-static method think\Route::get() should not be called statically

解决办法是注释掉 use think\Route; 即可.

虽然不知道为什么会这样…但确实注释掉就可以了, 比较鸡肋…

记录一哈.
-End-

风影OvO

风影OvO, 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA 4.0协议进行授权 | 转载请注明原文链接

留下你的评论

*评论支持代码高亮<pre class="prettyprint linenums">代码</pre>

相关推荐